/* 공통 css start */
.page{
    padding-top: 64px;
 }

 .sliderEffect{
    display: flex;
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    /* 인터넷 익스플로러 */
    -ms-overflow-style: none;
    /* 파이어폭스 */   
    scrollbar-width: none;
 }

 .sliderEffect::-webkit-scrollbar {
    display: none;
    box-shadow: none;
    background: none;
    border: none;
}

 .inputCustom{
    width: 100%;
    height: 48px;
    font-weight: 400;
    font-size: 1.5em;
    padding:0px 14px;
    border:1px #DADCE2 solid;
    outline: none;
    border-radius: 8px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.inputCustom.active{
    padding:0px 76px 0px 14px;
}

.inputCustom.active2{
    padding:0px 48px 0px 14px;
}

.inputCustom:hover:not(:disabled, :read-only) {
    border:1px #7E49FF solid;
}

.inputCustom:focus:not(:disabled, :read-only){
    border:1px #7E49FF solid;
    box-shadow: 0px 0px 0px 2px rgba(126, 73, 255, 0.2);
}

.inputCustom.warning:hover:not(:disabled, :read-only),
.textCustom.warning:hover:not(:disabled, :read-only){
    border:1px #FF2C20 solid;
}

.inputCustom.warning:focus:not(:disabled, :read-only),
.textCustom.warning:focus:not(:disabled, :read-only){
    border:1px #FF2C20 solid;
    box-shadow: 0px 0px 0px 2px rgba(255, 44, 32, 0.1);
}

.inputCustom::placeholder,
.textCustom::placeholder{
    color: #B6B8BE;
}

.inputCustom:disabled,
.inputCustom:read-only{
    color: #B6B8BE;
    background: #F1F2F3;
}

.selectCustom {
    outline: none;
    border:none;
    font-size: 1.2em;
    font-weight: 600;
    width: 48px;
    height: 16px;    
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('/public/assets/icons/icon-down.svg') no-repeat 100% 50% / 12px auto;
    font-family: 'Pretendard' !important;
    color: #7C8088 !important;
}

.textCustom{
    width: 100%;
    font-weight: 400;
    font-size: 1.5em;
    line-height: 1.4;
    padding:12px 14px;
    border:1px #DADCE2 solid;
    outline: none;
    resize:none;
    border-radius: 8px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.textCustom:hover:not(:disabled, :read-only) {
    border:1px #7E49FF solid;
}

.textCustom:focus:not(:disabled, :read-only){
    border:1px #7E49FF solid;
    box-shadow: 0px 0px 0px 2px rgba(126, 73, 255, 0.2);
}

.btnCustom{
    outline: none;
    border:none;
    border-radius: 8px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.btnType1{
    color: #fff;    
    background: #7E49FF;
    border: 1px #7E49FF solid;
}

.btnType1:hover{
    background: #6426DA;
    border: 1px #6426DA solid;
}

.btnType1.disabled,
.btnType1:disabled{
    background: #DCD4FF;
    border: 1px #DCD4FF solid;
    pointer-events: none;
}

.btnType2{
    color: #7E49FF;    
    background: #ECE8FF;
    border: 1px #ECE8FF solid;
}

.btnType2:hover{
    background: #DCD4FF;
    border: 1px #DCD4FF solid;
}

.btnType3{
    color: #32343C;    
    background: #F1F2F3;
    border: 1px #F1F2F3 solid;
}

.btnType3:hover{
    background: #E6E8EC;
    border: 1px #E6E8EC solid;
}

.btnType3.disabled,
.btnType3:disabled{
    color: #B6B8BE;
    pointer-events: none;
}

.btnType4{
    color: #32343C;
    background: #fff;
    border: 1px #DADCE2 solid;
}

.btnType4:hover{
    background: #F1F2F3;
}

.scrollBox{
    width: 100%;
    overflow: hidden;
    overflow-y: auto;
}

.scrollBox::-webkit-scrollbar {
    width: 12px;
    height: 12px;
    background: none;
}

.scrollBox::-webkit-scrollbar-thumb {
    outline: none;
    border-radius: 10px;
    border: 4px solid transparent;
    box-shadow: inset 6px 6px 0 rgba(204, 204, 204, 0.8);
}

.scrollBox::-webkit-scrollbar-track {
    box-shadow: none;
    background: none;
}

form .iconBox,
.userFormBox .iconBox{
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    right: 14px;
}

form .iconBox a,
.userFormBox .iconBox a{
    width: 20px;
    height: 20px;
    display: inline-block;
}

form .iconBox .blindBtn img.on,
.userFormBox .iconBox .blindBtn img.on{
    display: none;
}

form .iconBox .closeBtn,
.userFormBox .iconBox .closeBtn{
    display: none;   
}

form .iconBox a:last-child,
.userFormBox .iconBox a:last-child{
    margin-left: 8px;
}

.page .likeBtn {
    padding: 0px 8px;
    height: 24px;
    line-height: 24px;
    font-size: 1.2em;
    font-weight: 600;
    color: #7E49FF;
    border: 1px rgba(126, 73, 255, 0.2) solid;
    border-radius: 99px;
    display: inline-block;
    padding-left: 26px;
    transition: all 0.3s;
}

.page .likeBtn img {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.page .likeBtn img.on {
    display: none;
}

.page .likeBtn b{
    font-weight: 600;
}

.page .likeBtn.active{
    background: #7E49FF;
    border: 1px #7E49FF solid;
    color: #fff;
}

.page .likeBtn.active .on{
    display: block;
}

.page .likeBtn.active .off{
    display: none;
}

.page .bookmark{
    width: 20px;
    height: 20px;
}

.page .bookmark .on {
    display: none;
}

.page .bookmark.active .on {
    display: block;
}

.page .bookmark.active .off {
    display: none;
}

.userProfileBox{
    display: block;
    border-radius: 50%;
    overflow: hidden;
}

.userProfileBox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.userProfileBox::after{
    content: '';
    border: 1px rgba(50, 52, 60, 0.1) solid;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background: none;
    border-radius: 50%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 10;
}

.userFollowBtn{
    color: #7E49FF;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    margin-left: 12px;
    width: 48px;
    height: 24px;
    background: #ECE8FF;
    border-radius: 6px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.userFollowBtn.active{
    background: #F1F2F3;
    color: #32343C;
}

.userFormBox li{
    margin-bottom: 20px;
}

.userFormBox li:last-child{
    margin-top: 40px;
    margin-bottom: 40px;
}

.userFormBox li span{
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 1.2em;
    color: #505258;
}

.userFormBox li span em{
    color: #FF2C20;
    margin-left: 2px;
    vertical-align: middle;
}

.userFormBox li div .warningText{
    display: none;
    margin-top: 6px;
    color: #FF2C20;
    font-size: 1.2em;    
}

.userFormBox li div.active{
    margin-bottom: 12px;
}

.userFormBox li div p{
    font-size: 1.2em;
    color: #7C8088;
    margin-bottom: 6px;
}

.userFormBox li div .inputBtnBox{
    padding-right: 92px;
}

.userFormBox li div .inputBtnBox.custom{
    padding-right: 108px;
}

.userFormBox li div .inputBtnBox a{
    position: absolute;
    right: 0px;
    top: 0px;
    border-radius: 8px;
    width: 80px;
    height: 48px;
    font-size: 1.5em;
    font-weight: bold;
}

.userFormBox li div .inputBtnBox a.custom{
    width: 96px;
}

.userFormBox li div .inputBtnBox.active{
    padding-right: 108px;
}

.userFormBox li div .inputBtnBox.active a{
    width: 96px;
}

.userFormBox li div .timer{
    display: none;
    position: absolute;
    right: 106px;
    top:50%;
    transform: translateY(-50%);
    width: 38px;
    height: 24px;
    background: #FFE1DF;
    color: #FF2C20;
    font-size: 1.2em;
    font-weight: 500;
    border-radius: 8px;    
}

.userFormBox li label{
    cursor: pointer;
}

.userFormBox li label input{
    cursor: pointer;
    vertical-align: middle;
}

.userFormBox li label em{
    color: #32343C;
    font-size: 1.4em;
    font-weight: 500;
    vertical-align: middle;
}

.userFormBox li label em a::after{
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 1px;
    background: #32343C;
}
/* 공통 css end */

/* modal css start */
.modalNotice{
    display: none;
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10010;
    width: 100%;
    text-align: center;
    padding:0px 16px;
}

.modalNotice .inner{
    display: inline-block;
    padding:12px 16px;
    background: rgba(14, 14, 16, 0.85);
    font-size: 1.4em;
    color: #fff;
    border-radius: 8px;
    width: auto;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
}

.modalNotice span{
    display: inline-block;
    vertical-align: middle;
}

.modalNotice img{
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}

.modal{
    width: 100%;
    height: 100%;
    z-index: 10000;
    position: fixed;
    left: 0px;
    top:0px;
    background: rgba(0,0,0,0.6);
    display:none;
}

.modal.custom{
    z-index: 9999;
}

.modal.custom2{
    z-index: 10001;
}

.modal .closeBg{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 0;
}

.modalType1{
    padding:0px 24px;
}

.modalType1 .inner{
    max-width: 312px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    background: #fff;
    text-align: center;
    left: 50%;
    top:50%;
    transform: translate(-50%,-50%);
}

.modalType1 .inner h4{
    font-size: 1.6em;
    line-height: 1.4;
    font-weight: 600;
    padding:50px 16px 48px;
    color: #212529;
}

.modalType1 .inner h4.custom{
    padding:34px 0px 8px;
}

.modalType1 .inner h4.custom2{
    padding:38px 0px 36px;
}

.modalType1 .inner p{
    font-size: 1.5em;
    color: #212529;
    margin-bottom: 34px;
}

.modalType1 .inner .btnBox{
    border-top: 1px #E6E8EC solid;
}

.modalType1 .inner .btnBox a{
    width: 50%;
    height: 56px;
    color: #7C8088;
    font-weight: 600;
    font-size: 1.5em;
}

.modalType1 .inner .btnBox:not(.custom) a:last-child{
    border-left: 1px #E6E8EC solid;
    color: #7E49FF;
}

.modalType1 .inner .btnBox.custom a:first-child{
    border-right: 1px #E6E8EC solid;
    color: #7E49FF;
}

.modalType2{
    width: 100%;
    height: 100%;
    display: none;
}

.modalType2 .btnBox{
    position: absolute;
    padding:24px 12px;
    bottom: 0px;
    left: 0px;
    width: 100%;
}

.modalType2 .btnBox li{
    background: #fff;
    border-radius: 10px;
    margin-top: 12px;
}

.modalType2 .btnBox li a{
    height: 56px;
    font-size: 1.6em;
    font-weight: 600;
}

.modalType2 .btnBox li a+a{
    border-top: 1px #E6E8EC solid;
}

.modalType2 .btnBox li a.custom{
    color: #7E49FF;
}

.modalType2 .btnBox li a.custom2{
    color: #FF2C20;
}

.modalType2 .shareBox{
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    border-radius: 10px 10px 0px 0px;
    background: #fff;
}

.modalType2 .shareBox h3{
    font-size: 1.6em;
    font-weight: 600;
    text-align: center;
    padding:13px 0px;
}

.modalType2 .shareBox h3 a{
    width: 16px;
    height: 16px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.modalType2 .shareBox .imgBox{
    border-bottom: 1px #E6E8EC solid;
    padding:0px 16px 0px 76px;
    min-height: 80px;
}

.modalType2 .shareBox .imgBox p{
    width: 48px;
    height: 48px;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.modalType2 .shareBox .imgBox p.custom{
    border-radius: 5px;
}

.modalType2 .shareBox .imgBox p.custom::after{
    border-radius: 5px;
}

.modalType2 .shareBox .imgBox h4{
    font-size: 1.6em;
    font-weight: 600;
}

.modalType2 .shareBox .optionBox a{
    height: 54px;
    padding:0px 16px;
    border-bottom: 1px #E6E8EC solid;
}

.modalType2 .shareBox .optionBox a span{
    font-size: 1.5em;
    font-weight: 600;
    color: #32343C;
    margin-left: 12px;
}

.modalType2 .shareBox .optionBox a:last-child{
    border-bottom: 0px;
}

.loading{
    position: fixed;
    top: 44%;
    left: 50%;
    transform: translate(-50%,-50%);
    width:40px;
    height: 40px;
    z-index: 9999;
}

.modal .inner.custom{
    max-width: 520px;
    width: 100%;
    height: calc(100% - 80px);
    left: 50%;
    top:50%;
    transform: translate(-50%,-50%);
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.reviewModal .inner form{
    height: 100%;
}

.modal .modalHeader{
    border-bottom: 1px solid rgba(50,52,60,0.1);
}

.modal .modalHeader .flexBox4{
    height: 48px;
}

.modal .modalHeader .flexBox4.custom{
    height: 64px;
    flex-wrap: nowrap;
    padding-left: 32px;
}

.modal .modalHeader .closeBtn{
    position: absolute;
    left: 0px;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
}

.modal .modalHeader .resultBtn{
    position: absolute;
    right: 0px;
    top:50%;
    transform: translateY(-50%);
    font-size: 1.4em;
    font-weight: 600;
    color:#7E49FF;
    pointer-events: all;
    display: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.modal .modalHeader .resultBtn.disabled{
    color: #DCD4FF;
    pointer-events: none;
}

.modal .modalHeader h3{
    font-size: 1.6em;
    font-weight: 600;
}

.modal .modalHeader .searchInner{
    padding: 12px 41px 12px 0px;
}

.modal .modalHeader .searchInner > a{
    position: absolute;
    right: 0px;
    top:50%;
    transform: translateY(-50%);
    font-size: 1.4em;
    font-weight: 600;
    color: #7E49FF;
}

.modal .modalHeader .inputBox{
    width: 100%;
}

.modal .modalHeader .inputBox input{
    padding-right: 42px;
    height: 40px;
    width: 100%;
}

.modal .modalHeader .inputBox input:focus{
    box-shadow: none;
}

.modal .modalHeader .inputBox a{
    display: none;
    position: absolute;
    right: 14px;
    top:50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.modal .modalBody{
    padding:20px 0px 0px;
    height: calc(100% - 129px);
}

.modal .modalBody.custom{
    height: calc(100% - 49px);
}

.modal .modalBody.custom2{
    padding:0px;
    height: calc(100% - 145px);
}

.modal .modalBody.custom3{
    padding:0px;
    height: calc(100% - 65px);
}

.modal .modalBody.custom4{
    padding:0px;
    height: calc(100% - 113px);
}

.modal .modalBody .infoBox{
    padding:0px 16px;
}

.modal .modalBody .infoBox li{
    margin-bottom: 20px;
}

.modal .modalBody .infoBox li .flexBox{
    margin-bottom: 12px;
}

.modal .modalBody .infoBox li.custom{
    margin-bottom: 0px;
    padding:20px 0px;
    cursor: pointer;
    flex-wrap: nowrap;
}

.modal .modalBody .infoBox li.custom::before{
    width: calc(100% + 32px);
    height: 1px;
    background: #E6E8EC;
    content: '';
    position: absolute;
    top: 0px;
    left:50%;
    transform: translateX(-50%);
}

.modal .modalBody .infoBox li.custom img{
    width: 20px;
    height: 20px;
}

.modal .modalBody .infoBox li.custom2{
    padding:0px 0px 20px 0px;
    cursor: unset;
}

.modal .modalBody .infoBox li.custom2::before{
    display: none;
    content: none;
}

.modal .modalBody .infoBox li.custom2 .locationBox{
    width: 100%;
    padding:12px;
    border-radius: 8px;
    background: #F1F2F3;
}

.modal .modalBody .infoBox li.custom2 .locationBox .nameBox{
    padding-left: 19px;
    word-break: keep-all;
}

.modal .modalBody .infoBox li.custom2 .locationBox .nameBox b{
    font-size: 1.5em;
    font-weight: 500;
    color: #32343C;
    line-height: 1.4;
}

.modal .modalBody .infoBox li.custom2 .locationBox .nameBox img{
    position: absolute;
    left: 0px;
    top: 2px;
    width: 15px;
    height: 15px;
}

.modal .modalBody .infoBox li.custom2 .locationBox input{
    width: 100%;
    height: 40px;
    font-size: 1.5em;
    padding:0px 14px;
    border:1px #DADCE2 solid;
    border-radius: 8px;
    outline:none;
    color: #0E0E10;
    margin-top: 8px;
}

.modal .modalBody .infoBox li.custom2 .locationBox input::placeholder{
    color:#B6B8BE
}

.modal .modalBody span{
    font-size: 1.2em;
    font-weight: 600;
    color: #505258;
}

.modal .modalBody span.custom{
    display: block;
    padding:0px 16px;
    margin-bottom: 12px;
}

.modal .modalBody .infoBox li > a{
    font-size: 1.6em;
    font-weight: 600;
    color: #7C8088;
}

.modal .modalBody .infoBox li > a.active{
    color: #0E0E10;
}

.modal .modalBody .infoBox li p{
    font-size: 1.6em;
    font-weight: 600;
    display: none;
    cursor: pointer;
}

.modal .modalBody .infoBox li p img{
    margin:0px 4px;
}

/* .modal .modalBody .infoBox li input{
    width: 100%;
    font-size: 1.6em;
    font-weight: 600;
    border:none;
    outline: none;
}

.modal .modalBody .infoBox li input::placeholder{
    color: #B6B8BE;
} */

.modal .modalBody .starBox{
    padding:20px 0px;
    margin-bottom: 20px;
    border-top: 1px #E6E8EC solid;
    border-bottom: 1px #E6E8EC solid;
}

.modal .modalBody .starBox a img{
    width: 40px;
    margin:0px 4px;
}

.modal .modalBody .imgUploadBox{
    padding-left: 108px;
    height: 84px;
    margin-bottom: 12px;
}

.modal .modalBody .imgUploadBox input{
    width: 0px;
    height: 0px;
    display: none;
}

.modal .modalBody .imgUploadBox .fileBox{
    width: 84px;
    height: 84px;
    position: absolute;
    left: 16px;
    top: 0px;
    border:1px #DADCE2 solid;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
}

.modal .modalBody .imgUploadBox .fileBox img{
    display: inline-block;
    margin:21px 0px 2px 0px;
}

.modal .modalBody .imgUploadBox .fileBox span{
    display: block;
    width: 100%;
}

.modal .modalBody .imgUploadBox .fileBox p{
    font-size: 1.2em;
    font-weight: 600;
    color: #7E49FF;
}

.modal .modalBody .imgUploadBox .imgBox{
    display: -webkit-box;
    width: 100%;
    overflow: hidden;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.modal .modalBody .imgUploadBox .imgBox::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera*/
}

.modal .modalBody .imgUploadBox .imgBox::after{
    content: '';
    display: block;
    width: 16px;
    background: none;
}

.modal .modalBody .imgUploadBox .imgBox .item{
    width: 84px;
    height: 84px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 8px;
}

.modal .modalBody .imgUploadBox .imgBox .item:last-child{
    margin-right: 0px;
}

.modal .modalBody .imgUploadBox .imgBox .item::after{
    content: '';
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 9;
    width: 82px;
    height: 82px;
    border-radius: 5px;
    border:1px rgba(50, 52, 60, 0.1) solid;
}

.modal .modalBody .imgUploadBox .imgBox .item > img{
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal .modalBody .imgUploadBox .imgBox .item a{
    position: absolute;
    z-index: 10;
    right: 4px;
    top: 4px;
    width: 16px;
    height: 16px;
}

.modal .modalBody .textBox .textInner{
    background: #fff;    
    padding: 12px 14px;
    border:1px #DADCE2 solid;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 6px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
 }

 .modal .modalBody .textBox .textInner.warning{
    border:1px #FF2C20 solid;
}

.modal .modalBody .textBox textarea{
    width: 100%;
    height: 200px;
    outline:none;
    border:none;
    resize: none;
    border-radius: 8px;    
    font-size: 1.5em;
    font-weight: 400;
    height: 200px;
    line-height: 1.4;
}

.modal .modalBody .textBox .textInner:hover{
    border:1px #7E49FF solid;
}

.modal .modalBody .textBox .textInner.warning:hover{
    border:1px #FF2C20 solid;
}

.modal .modalBody .textBox .textInner:focus-within{
    border:1px #7E49FF solid;
    box-shadow: 0px 0px 0px 2px rgba(126, 73, 255, 0.2);
}

.modal .modalBody .textBox .textInner.warning:focus-within{
    border:1px #FF2C20 solid;
    box-shadow: 0px 0px 0px 2px rgba(255, 44, 32, 0.1);
}

.modal .modalBody .textBox textarea::-webkit-scrollbar {
    display: none;
    box-shadow: none;
    background: none;
    border: none;
 }

.modal .modalBody .textBox p{
    font-size: 1.2em;
    color: #7C8088;
    margin-bottom: 20px;
}

.modal .modalBody .textBox textarea::placeholder{
    color:#B6B8BE;
}

.modal .modalBody .noticeBox{
    padding:20px 16px;
    border-top: 1px #E6E8EC solid;
}

.modal .modalBody .noticeBox li{
    margin-bottom: 8px;
    font-size: 1.2em;
    color: #7C8088;
    word-break: keep-all;
    padding-left: 6px;
    line-height: 1.4;
}

.modal .modalBody .noticeBox li:last-child{
    margin-bottom: 0px;
}

.modal .modalBody .noticeBox li::before{
    content: '';
    display: block;
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #7C8088;
    top: 6px;
    left: 0px;
}

.modal .modalBody .addBox{
    border-top:1px #E6E8EC solid;
    padding:20px 16px;
}

.modal .modalBody .addBox a{
    font-size: 1.2em;
    font-weight: 600;
    height: 24px;
    padding:0px 8px;
}

.modal .modalBody .categoryListBox{
    padding:0px 16px;
    height: calc(100% - 40px);
    /* height: calc(100% - 105px); */
}

.modal .modalBody .categoryListBox a{
    margin-bottom: 20px;
    padding:9px 0px;
}

.modal .modalBody .categoryListBox a:first-child{
    margin-top: 20px;
}

.modal .modalBody .categoryListBox a:last-child{
    margin-bottom: 40px;
}

.modal .modalBody .categoryListBox a em{
    margin-left: 6px;
    font-size: 1.6em;
    font-weight: 600;
    color: #32343C;
}

.modal .categorySubBox .modalBody .categoryListBox a em{
    margin-left: 0px;
}

.modal .modalBody .searchNameBox a{
    display: block;
    padding:16px 16px 14px;
    color: #32343C;
    font-size: 1.6em;
    font-weight: 600;
    border-bottom: 1px #E6E8EC solid;
    line-height: 1.4;
    word-break: keep-all;
}

.modal .modalBody .searchNameBox .plusTitle{
    padding-right: 48px;
}

.modal .modalBody .searchNameBox .plusTitle img{
    position: absolute;
    right: 16px;
    top:50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
}

.modal .modalBody .searchNameBox a b{
    font-weight: 600;
}

.modal .modalBody .searchNameBox a b.custom{
    color:#7E49FF;
    word-break: break-all;
}

.modal .modalBody .searchNameBox a em{
    color:#7E49FF;
}

.modal .modalBody .searchNameBox a sub{
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #7C8088;
    display: block;
}

.modal .modalBody .searchNameBox a strong{
    display: block;
    font-size: 13px;
    color: #505258;
    margin-top: 4px;
    font-weight: 500;
}

.modal .modalBody .locationSearchBtn{
    position: sticky;
    width: 100%;
    height: 46px;
    left: 0px;
    top: 0px;
    font-size: 1.5em;
    font-weight: 600;
    color: #505258;
    padding:0px 16px;    
    border-bottom: 1px #E6E8EC solid;
    background: #fff;
    z-index: 9999;
}

.modal .modalBody .locationSearchBtn img{
    width: 15px;
    height: 15px;
    margin-right: 4px;
}

.reviewDetailModal .inner .modalImgBox{
    height: calc(100% - 121px);
}

.reviewDetailModal .inner .modalImgBox .reviewImgDetailSld{
    height: 100%;
}

.reviewDetailModal .inner .modalImgBox .reviewImgDetailSld .owl-stage-outer,
.reviewDetailModal .inner .modalImgBox .reviewImgDetailSld .owl-stage,
.reviewDetailModal .inner .modalImgBox .reviewImgDetailSld .owl-item,
.reviewDetailModal .inner .modalImgBox .reviewImgDetailSld .item{
    height: 100%;
}

.reviewDetailModal .inner .modalImgBox .reviewImgDetailSld .owl-dots{
    margin-top: 0px;
    position: absolute;
    bottom: 16px;
    left: 0px;
    width: 100%;
    pointer-events: none;
}

.reviewDetailModal .owl-theme .owl-dots .owl-dot span{
    margin:0px 3px;
    width: 6px;
    height: 6px;
    background: #E6E8EC
}

.reviewDetailModal .owl-theme .owl-dots .owl-dot.active span{
    background: #B6B8BE;
}

.reviewDetailModal .inner .modalImgBox .reviewImgDetailSld .item img{
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%,-50%);
    width: 100%;
    object-fit: cover;
}

.reviewDetailModal .inner .modalImgBox .sldBtn{
    width: 28px;
    height: 28px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.reviewDetailModal .inner .modalImgBox .prevBtn{
    left: 16px;
}

.reviewDetailModal .inner .modalImgBox .nextBtn{
    right: 16px;
}

.reviewDetailModal .inner .modalUserBox{
    height: 72px;
    padding:16px 76px 16px 68px;
}

.reviewDetailModal .inner .modalUserBox a{
    position: absolute;
    width: 40px;
    height: 40px;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.reviewDetailModal .inner .modalUserBox .textBox{
    padding-top: 3px;
}

.reviewDetailModal .inner .modalUserBox h4{
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 6px;
}

.reviewDetailModal .inner .modalUserBox .textBox.custom h4{
    margin-bottom: 0px;
}

.reviewDetailModal .inner .modalUserBox .textBox.custom h4.custom{
    color: #7C8088;
}

.reviewDetailModal .inner .modalUserBox p{
    font-size: 1.2em;
    font-weight: 500;
    color: #505258;
}

.reviewDetailModal .inner .modalUserBox p:nth-child(2){
    margin:0px 5px;
    padding:0px 5px;
}

.reviewDetailModal .inner .modalUserBox p:nth-child(2)::before,
.reviewDetailModal .inner .modalUserBox p:nth-child(2)::after{
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #B6B8BE;
    top:50%;
    transform: translateY(-50%);
}

.reviewDetailModal .inner .modalUserBox p:nth-child(2)::before{
    left: -1px;
}

.reviewDetailModal .inner .modalUserBox p:nth-child(2)::after{
    right: -1px;
}

.reviewDetailModal .inner .modalUserBox em{
    font-weight: 600;
    color: #505258;
    margin-left: 4px;
}

.reviewDetailModal .inner .modalUserBox .followBtn{
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.followerModal .inner .modalHeader{
    border-bottom: 0px;
}

.followerModal .inner .modalBody{
    padding-top: 0px;
    height: calc(100% - 48px);
}

.followerModal .inner .modalBody .menuBox{
    border-bottom: 1px rgba(50, 52, 60, 0.1) solid;
    height: 50px;
}

.followerModal .inner .modalBody .menuBox a{
    text-align: center;
    padding:16px 0px;
    color: #7C8088;
    font-size: 1.5em;
    font-weight: 600;
}

.followerModal .inner .modalBody .menuBox a.active{
    color: #0E0E10;
}

.followerModal .inner .modalBody .menuBox .activeLine{
    width: 50%;
    height: 2px;
    background: #0E0E10;
    position: absolute;
    left: 0%;
    bottom: 0px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.followerModal .inner .modalBody .scrollBox{
    padding-top: 20px;
    height: calc(100% - 50px);
}

.followerModal .inner .modalBody .scrollBox .row,
.followerModal .inner .modalBody .scrollBox .row .imx{
    height: 100%;
}

.followerModal .inner .modalBody .scrollBox .inputBox{
    margin-bottom: 20px;
}

.followerModal .inner .modalBody .scrollBox .inputBox input[type="text"]{
    width: 240px;
    height: 40px;
    padding: 0px 30px 0px 42px;
    background: #F1F2F3;
    border: 1px #DADCE2 solid;
    border-radius: 8px;
    width: 100%;
    font-size: 1.5em;
    font-weight: 500;
    outline: none;
}

.followerModal .inner .modalBody .scrollBox .inputBox input[type="text"]::placeholder{
    color:#7C8088;
}

.followerModal .inner .modalBody .scrollBox .inputBox img{
    z-index: 2;
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
}

.followerModal .inner .modalBody .scrollBox .listBox{
    height: calc(100% - 60px);
}

.followerModal .inner .modalBody .scrollBox .listBox .item{
    padding:16px 0px;
    border-bottom: 1px #E6E8EC solid;
}

.followerModal .inner .modalBody .scrollBox .listBox .item:first-child{
    padding-top: 0px;
}

.followerModal .inner .modalBody .scrollBox .listBox .item:last-child{
    border-bottom: 0px;
}

.followerModal .inner .modalBody .scrollBox .listBox .item span{
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

.followerModal .inner .modalBody .scrollBox .listBox .item p{
    font-size: 1.5em;
    font-weight: 600;
}

.followerModal .inner .modalBody .scrollBox .listBox .noneData{
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%,-50%);
    width: 100%;
    text-align: center;
}

.followerModal .inner .modalBody .scrollBox .listBox .noneData p{
    margin-top: 16px;
    font-size: 1.5em;
    font-weight: 500;
    color: #7C8088;
}

.reportModal .inner.custom{
    height: 572px;
}

.reportModal .inner .modalBody .infoBox{
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom:1px #E6E8EC solid;
}

.reportModal .inner .modalBody .infoBox h4{
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 12px;
}

.reportModal .inner .modalBody .infoBox textarea{
    height: 200px;
}

.reportModal .inner .modalBody .infoBox textarea::placeholder{
    color: #B6B8BE;
}

.reportModal .inner .modalBody .infoBox p{
    text-align: right;
    font-size: 1.2em;
    color: #7C8088;
    margin-top: 6px;
}

.reportModal .inner .modalBody ul{
    padding:0px 16px;
}

.reportModal .inner .modalBody ul li{
    margin-bottom: 8px;
    font-size: 1.2em;
    color: #7C8088;
    word-break: keep-all;
    padding-left: 8px;
    line-height: 1.4;
}

.reportModal .inner .modalBody ul li::before{
    content: '';
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #7C8088;
    position: absolute;
    left: 0px;
    top: 6px;
}

.reportModal .inner .modalBody ul li:last-child{
    margin-bottom: 0px;
}

.categoryModifyModal .inner .modalBody{
    padding:0px;
}

.categoryModifyModal .inner .modalBody .scrollBox{
    width: 100%;
    height: 100%;
    padding:20px 16px 0px;
}

.categoryModifyModal .inner .modalBody .categoryInfo{
    padding:12px 16px;
    background: #F1F2F3;
    border-radius: 8px;
    margin-bottom: 40px;
}

.categoryModifyModal .inner .modalBody .categoryInfo::after{
    content: '';
    width: calc(100% + 32px);
    height: 1px;
    background: #E6E8EC;
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
}

.categoryModifyModal .inner .modalBody .categoryInfo span{
    display: block;
    font-size: 1.2em;
    font-weight: 600;
    color: #505258;
    margin-bottom: 8px;
}

.categoryModifyModal .inner .modalBody .categoryInfo em{
    font-size: 1.6em;
    font-weight: 600;
}

.categoryModifyModal .inner .modalBody .categoryInfo img{
    margin: 0px 4px;
}

.categoryModifyModal .inner .modalBody .categoryBox > h4{
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 8px;
}

.categoryModifyModal .inner .modalBody .categoryBox > span{
    display: block;
    font-size: 1.2em;
    color: #7C8088;
    margin-bottom: 20px;
    font-weight: 400;
}

.categoryModifyModal .inner .modalBody .categoryBox .item{
    margin-bottom: 20px;
    height: 40px;
    cursor: pointer;
}

.categoryModifyModal .inner .modalBody .categoryBox .item em{
    font-size: 1.6em;
    font-weight: 600;
    color: #32343C;
    margin-left: 8px;
}

.categoryModifyModal .inner .modalBody .categoryBox .subBox{
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px #E6E8EC solid;
}

.categoryModifyModal .inner .modalBody .categoryBox .subBox .item em{
    margin-left: 0px;
}

.categoryModifyModal .inner .modalBody .categoryBox .backBtn{
    display: inline-block;
    height: 40px;
    line-height: 40px;
}

.categoryModifyModal .inner .modalBody .categoryBox .backBtn img{
    vertical-align: sub;
    margin-right: 8px;
}

.categoryModifyModal .inner .modalBody .categoryBox .backBtn span{
    font-size: 1.6em;
    font-weight: 600;
    color: #32343C;
}

.changeModal .inner.custom{
    height: auto;
}

.changeModal .inner .modalBody{
    height: auto;
}

.changeModal .inner .modalBody h3{
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 8px;
}

.changeModal .inner .modalBody h4{
    font-size: 1.2em;
    color: #7C8088;
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 1.4;
    word-break: keep-all;
}

.changeModal .inner .modalBody .userFormBox li:last-child{
    margin-top: 20px;
    margin-bottom: 25px;
}

.termsModal .pageTerms .contentWrapper{
    padding:20px 0px 40px;
}

.termsModal .pageTerms .contentWrapper span{
    font-size: 1em;
    font-weight: 400;
    color: inherit;
}

.userWithdrawalModal .modalBody .topBox{
    padding-bottom: 20px;
    border-bottom: 1px #E6E8EC solid;
}

.userWithdrawalModal .modalBody .topBox h2{
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 8px;
}

.userWithdrawalModal .modalBody .topBox p{
    font-size: 1.2em;
    color: #7C8088;
}

.userWithdrawalModal .modalBody .topBox p b{
    font-weight: 400;
}

.userWithdrawalModal .modalBody .topBox em{
    display: block;
    margin-bottom: 12px;
    font-size: 1.2em;
    color: #7C8088;
}

.userWithdrawalModal .modalBody .topBox textarea{
    width: 100%;
    outline: none;
    resize: none;
    height: 200px;
    border:1px #DADCE2 solid;
    border-radius: 8px;
    font-size: 1.5em;
    padding:12px 14px;
    margin-bottom: 6px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.userWithdrawalModal .modalBody .topBox textarea::placeholder{
    color: #B6B8BE;
}

.userWithdrawalModal .modalBody .topBox textarea:hover{
    border:1px #7E49FF solid;
}

.userWithdrawalModal .modalBody .topBox textarea:focus{
    border:1px #7E49FF solid;
    box-shadow: 0px 0px 0px 2px rgba(126, 73, 255, 0.2);
}

.userWithdrawalModal .modalBody .bottomBox{
    padding: 20px 0px 40px;
    height: calc(100% - 303px);
}

.userWithdrawalModal .modalBody .bottomBox h3{
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 20px;
}

.userWithdrawalModal .modalBody .bottomBox ul li{
    padding-left: 12px;
    margin-bottom: 8px;
    color: #212226;
}

.userWithdrawalModal .modalBody .bottomBox ul li:last-child{
    margin-bottom: 20px;
}

.userWithdrawalModal .modalBody .bottomBox ul li h4{
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 4px;
}

.userWithdrawalModal .modalBody .bottomBox ul li h4::before{
    content: '';
    background: #212226;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    left: -12px;
    top: 6px;
}

.userWithdrawalModal .modalBody .bottomBox ul li div{
    font-size: 1.4em;
    line-height: 1.5;
    word-break: keep-all;
}

.userWithdrawalModal .modalBody .bottomBox label input{
    vertical-align: middle;
}

.userWithdrawalModal .modalBody .bottomBox label em{
    font-size: 1.4em;
    font-weight: 500;
    color: #32343C;
    vertical-align: middle;
}

/* 인포윈도우 말풍선 커스텀 스타일 */
#searchMap{
    width: 100%;
    height: 100%;
}

.markerBubble {
    position: relative;
    max-width: 400px;
    padding: 12px;    
    cursor:pointer;
}

.markerBubble p {
    margin: 0;
    font-size: 1.5em;
    font-weight: 600;
    color: #7E49FF;
    margin-bottom:6px;
    white-space:nowrap;
    padding-right:20px;
}

.markerBubble p.custom{
    margin-bottom:0px;
}

.markerBubble .info-text {
    font-size:1.2em;
    white-space:nowrap;
}

.modal .modalFooter{
    padding:16px 0px;
    height: 80px;
    background: #fff;
}

.modal .modalFooter a{
    width: 100%;
    height: 48px;
    font-size: 1.5em;
    font-weight: bold;
}

.modal .modalFooter a.w50{
    width: calc(100% - 50% - 6px);
}

.modal .modalFooter a.custom.disabled{
    background: #F1F2F3;
    color: #B6B8BE;
    pointer-events: none;
}

.modal .subModal{
    display: none;
    position: absolute;
}

.modal .subModal.active{
    display: block;
}

.modal .categorySubBox .parentsBox{
    padding:0px 16px;
    border-bottom: 1px #E6E8EC solid;
    padding-bottom: 20px;
    font-size: 1.6em;
    font-weight: 600;
}

@media screen and (max-width: 910px){
    .modal .modalHeader .resultBtn{
        display: block;
    }

    .modal .inner.custom{
        max-width: 100%;
        width: 100%;
        height: 100%;
        border-radius: 0px;
    }

    .reportModal .inner.custom{
        height: 100%;
    }

    .reviewModal .reviewFormBox .modalBody,
    .categoryModifyModal .inner .modalBody{
        height: calc(100% - 48px);
    }

    .categoryModifyModal .inner .modalBody .scrollBox{
        padding-bottom: 20px;
    }

    .reviewModal .reviewFormBox .modalBody .noticeBox{
        padding:20px 16px 40px;
    }

    .reviewModal .reviewFormBox .modalFooter,
    .reportModal .modalFooter,
    .categoryModifyModal .modalFooter{
        display: none;
    }

    .changeModal .inner .modalBody h4{
        margin-bottom: 20px;
    }
}
/* modal css end */

/* index css start */
#pageMain .titleText{
    font-size: 1em;
    margin-bottom: 24px;
}

#pageMain .titleText span {
    font-size: 2.4em;
    font-weight: bold;            
}

#pageMain .titleText a{
    font-size: 1.5em;
    font-weight: 600;
    color: #505258;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

#pageMain .titleText a:hover{
    color: #0E0E10;
}

#pageMain .titleText a img{
    margin-left: 4px;
}

#pageMain .titleText.active{
    margin-bottom: 32px;
}

#pageMain .titleText.active2{
    padding-right: 100px;
}

#pageMain .menuWrapper {
    margin: 40px 0px 56px;
}

#pageMain .menuWrapper .categoryBox{
    justify-content: center;
}

#pageMain .menuWrapper .categoryBox .item {
    display: block;
    width: 60px;
    margin: 0px 10px;
    text-align: center;
}

#pageMain .menuWrapper .categoryBox .item:first-child{
    margin-left: 0px;
}

#pageMain .menuWrapper .categoryBox .item:last-child{
    margin-right: 0px;
}

#pageMain .menuWrapper .categoryBox .item span {
    display: block;
    font-weight: 600;
    font-size: 1.4em;
    width: 60px;
    height: 60px;
    margin: 0px auto 6px;
    border-radius: 50%;
    overflow: hidden;    
}

#pageMain .menuWrapper .categoryBox .item span::after{
    content: '';
    border:1px rgba(50, 52, 60, 0.1) solid;
    width: 58px;
    height: 58px;
    background:none;
    border-radius: 50%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 10;
}

#pageMain .menuWrapper .categoryBox .item span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#pageMain .menuWrapper .categoryBox em {
    display: block;
    font-size: 1.4em;
    font-weight: 600;
}

#pageMain .popularWrapper .itemBox {
    margin: 0px -10px 56px;
}

#pageMain .popularWrapper .itemBox .item {
    width: 33.3%;
    padding: 0px 10px;
}

#pageMain .popularWrapper .itemBox .item .inner {
    cursor: pointer;
}

#pageMain .popularWrapper .itemBox .item .inner .imgBox {
    width: 100%;
    padding-top: 75%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
}

#pageMain .popularWrapper .itemBox .item .inner:hover .imgBox .mainImg {
    transform: translate(-50%, -50%) scale(1.1);
}

#pageMain .popularWrapper .itemBox .item .inner .imgBox::after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
    z-index: 0;
}

#pageMain .popularWrapper .itemBox .item .inner .imgBox .mainImg {
    left: 50%;
    top: 50%;
    transition: all 0.3s;
    transform: translate(-50%, -50%);
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#pageMain .popularWrapper .imgBox .lankBox {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 1;
    background: rgba(14, 14, 16, 0.85);
    padding: 6px 8px;
    font-weight: 600;
    font-size: 1.4em;
    color: #fff;
    border-radius: 10px;
}

#pageMain .popularWrapper .imgBox .lankBox img {
    margin-right: 4px;
}

#pageMain .bookmark {
    position: absolute;
    width: 28px;
    height: 28px;
    right: 16px;
    top: 16px;
    z-index: 1;
}

#pageMain .categoryWrapper{
    overflow: hidden;
}

#pageMain .categoryWrapper .bookmark {
    right: 12px;
    top: 12px;
}

#pageMain .popularWrapper .itemBox .item .inner .imgBox .textBox {
    width: 100%;
    position: absolute;
    padding: 0px 16px;
    left: 0px;
    bottom: 16px;
    color: #fff;
    z-index: 1;
}

#pageMain .popularWrapper .itemBox .item .inner .imgBox .textBox p {
    margin-bottom: 6px;
    font-size: 1.2em;
    font-weight: 500;
}

#pageMain .popularWrapper .itemBox .item .inner .imgBox .textBox p img {
    margin: 0px 2px;
}

#pageMain .popularWrapper .itemBox .item .inner .imgBox .textBox > div{
    flex-wrap: nowrap;
}

#pageMain .popularWrapper .itemBox .item .inner .imgBox .textBox > div .subBox{
    justify-content: flex-end;
    flex-wrap: nowrap;
    width: auto;
    flex: none;
}

#pageMain .popularWrapper .itemBox .item .inner .imgBox .textBox div h4 {
    font-size: 1.5em;
    font-weight: 600;
}

#pageMain .popularWrapper .itemBox .item .inner .imgBox .textBox div em {
    width: 2px;
    height: 2px;
    background: #B6B8BE;
    border-radius: 50%;
    margin: 0px 4px;
}

#pageMain .popularWrapper .itemBox .item .inner .imgBox .textBox div span {
    margin-left: 2px;
    font-size: 1.2em;
    font-weight: 500;
}

#pageMain .popularWrapper .itemBox .item .inner .infoBox .profileBox {
    margin-bottom: 8px;
}

#pageMain .popularWrapper .itemBox .item .inner .infoBox .profileBox p {
    width: 20px;
    height: 20px;
    margin-right: 6px;
}

#pageMain .popularWrapper .itemBox .item .inner .infoBox .profileBox span {
    font-size: 1.2em;
    font-weight: 600;
    padding-top: 2px;
}

#pageMain .popularWrapper .itemBox .item .inner .infoBox .profileBox span.custom{
    color: #7C8088;
}

#pageMain .popularWrapper .itemBox .item .inner .infoBox .profileBox em {
    font-size: 1.2em;
    font-weight: 500;
    color: #B6B8BE;
}

#pageMain .popularWrapper .itemBox .item .inner .infoBox .starBox {
    margin-bottom: 8px;
}

#pageMain .popularWrapper .itemBox .item .inner .infoBox .contentBox {
    font-size: 1.4em;
    line-height: 1.4;            
    margin-bottom: 12px;
    max-height: 58px;
}

#pageMain .categoryWrapper .categoryBox {
    margin-bottom: 24px;
}

#pageMain .categoryWrapper .categoryBox a {
    background: #F1F2F3;
    margin-right: 8px;
    height: 36px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 99px;
    word-break: keep-all;
    font-weight: 600;
    transition: all 0.3s;
    flex-basis: auto;
}

#pageMain .categoryWrapper .categoryBox a:hover{
    background: #E6E8EC;
}

#pageMain .categoryWrapper .categoryBox a.active{
    background: #ECE8FF;
    color: #7E49FF;
}

#pageMain .categoryWrapper .categoryBox a.active:hover{
    background: #DFD5FF;
    color: #7E49FF;
}

#pageMain .categoryWrapper .categoryBox a img {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    transition: all 0.3s;
    z-index: 1;
}

#pageMain .categoryWrapper .categoryBox a img.on{
    opacity: 0;
    z-index: 2;
}

#pageMain .categoryWrapper .categoryBox a.active img{
    opacity: 0;
}

#pageMain .categoryWrapper .categoryBox a.active img.on{
    opacity: 1;
}

#pageMain .categoryWrapper .categoryBox a em {
    white-space: nowrap;
    font-size: 1.6em;
    margin-left: 36px;
    margin-right: 14px;
}

#pageMain .categoryWrapper .categoryBox a:first-child em {
    margin: 0px 14px;
}

#pageMain .categoryWrapper .categoryBox a:last-child{
    margin-right: 0px;
}

#pageMain .categoryWrapper .itemBox {
    margin: 0px -10px;
}

#pageMain .categoryWrapper .itemBox .item {
    width: 20%;
    padding: 0px 10px;
    margin-bottom: 40px;
}

#pageMain .categoryWrapper .itemBox .item .inner {
    cursor: pointer;
    transition: all 0.3s;
    top:0px;
}

#pageMain .categoryWrapper .itemBox .item .inner:hover{
    top:-5px;
}

#pageMain .categoryWrapper .itemBox .item .inner::before{
    content:'';
    display: block;
    position: absolute;
    left: 0px;
    top:0px;
    width:100%;
    height:100%;
    z-index:0;
    box-shadow: 0px 1px 4px rgba(0,0,0,0.05);
    border-radius: 10px;
    background: none;
}

#pageMain .categoryWrapper .itemBox .item .inner::after{
    content:'';
    display: block;
    position: absolute;
    left: 0px;
    top:0px;
    width:100%;
    height:100%;
    z-index:-1;
    box-shadow: 0px 6px 12px rgba(0,0,0,0.05);
    border-radius: 10px;
    background: none;
}

#pageMain .categoryWrapper .itemBox .item .inner .content{
    border-radius: 10px;
    overflow: hidden;
}

#pageMain .categoryWrapper .itemBox .item .inner .imgBox {
    width: 100%;
    padding-top: 100%;
}

#pageMain .categoryWrapper .itemBox .item .inner .imgBox::after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
    z-index: 0;
}

#pageMain .categoryWrapper .itemBox .item .inner .imgBox .mainImg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#pageMain .categoryWrapper .itemBox .item .inner .imgBox .textBox {
    position: absolute;
    left: 0px;
    bottom: 12px;
    padding: 0px 12px;
    color: #fff;
    z-index: 1;
}

#pageMain .categoryWrapper .itemBox .item .inner .imgBox .textBox h4 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 3px;
}

#pageMain .categoryWrapper .itemBox .item .inner .imgBox .textBox p {
    font-size: 1.2em;
    font-weight: 500;
}

#pageMain .categoryWrapper .itemBox .item .inner .imgBox .textBox p span {
    margin-left: 2px;
    padding-top: 2px;
}

#pageMain .categoryWrapper .itemBox .item .inner .infoBox {
    padding: 12px;
    background: #fff;
}

#pageMain .categoryWrapper .itemBox .item .inner .infoBox .profileBox,
#pageMain .communityWrapper .itemBox .item .contentBox .profileBox {
    margin-bottom: 4px;
    font-size: 1.2em;
    font-weight: 600;
}

#pageMain .categoryWrapper .itemBox .item .inner .infoBox .profileBox span,
#pageMain .communityWrapper .itemBox .item .contentBox .profileBox span {
    width: 20px;
    height: 20px;
    margin-right: 6px;
}

#pageMain .categoryWrapper .itemBox .item .inner .infoBox .profileBox em,
#pageMain .communityWrapper .itemBox .item .contentBox .profileBox em {
    padding-top: 2px;
}

#pageMain .categoryWrapper .itemBox .item .inner .infoBox .profileBox em.custom,
#pageMain .communityWrapper .itemBox .item .contentBox .profileBox em.custom{
    color: #7C8088;
}

#pageMain .categoryWrapper .itemBox .item .inner .infoBox .starBox {
    margin-bottom: 6px;
}

#pageMain .categoryWrapper .itemBox .item .inner .infoBox .contentBox {
    font-size: 1.4em;
    line-height: 1.4;
    margin-bottom: 12px;
    height: 58px;
}

#pageMain .categoryWrapper .itemBox .item .inner .infoBox .btnBox.custom{
    height: 24px;
}

#pageMain .categoryWrapper .itemBox .item .inner .infoBox .btnBox em{
    font-size: 1.2em;
    font-weight: 500;
    color: #B6B8BE;
}

#pageMain .noneData{
    width:100%;
    padding:76px 0px 100px;
    text-align: center;
}

#pageMain .noneData.custom{
    padding:76px 0px 44px;
}

#pageMain .noneData p{
    margin:16px 0px;
    font-size: 1.5em;
    font-weight: 500;
    color: #7C8088;
}

#pageMain .noneData a{
    display: inline-block;
    font-size: 1.4em;
    font-weight: 600;
    padding:0px 12px;
    height: 32px;
    line-height: 32px;
    margin:auto;
}

#pageMain .bannerWrapper .inner{
    margin-bottom: 80px;
    background: rgba(236,232,255,0.5);
    border-radius: 10px;
    padding:24px 60px;
}

#pageMain .bannerWrapper .inner img{
    width: 161px;
    margin-right: 40px;
}

#pageMain .bannerWrapper .inner h3{
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 10px;
}

#pageMain .bannerWrapper .inner p{
    color:#32343C;
    font-size: 1.5em;
    font-weight: 500;
}

#pageMain .bannerWrapper .inner a{
    width: 153px;
    height: 40px;
    font-size: 1.4em;
    font-weight: 600;
}

#pageMain .communityWrapper{
    margin-bottom: 56px;
}

#pageMain .communityWrapper .itemBox{
    margin:0px -16px 0px;
}

#pageMain .communityWrapper .itemBox .item{
    width: 50%;
    padding:0px 16px;
    margin-bottom: 40px;
}

#pageMain .communityWrapper .itemBox .item:nth-child(odd){
    padding:0px 20px 0px 16px;
}

#pageMain .communityWrapper .itemBox .item:nth-child(even){
    padding:0px 16px 0px 20px;
}

#pageMain .communityWrapper .itemBox .item .inner{
    cursor: pointer;
}

#pageMain .communityWrapper .itemBox .item .inner .lankBox{
    display: none;
}

#pageMain .communityWrapper .itemBox .item .flexBox{
    margin-bottom: 16px;
}

#pageMain .communityWrapper .itemBox .item .flexBox span{
    font-size: 1.2em;
    font-weight: 500;
    color: #7C8088;
}

#pageMain .communityWrapper .itemBox .item .flexBox span img{
    margin:0px 2px;
}

#pageMain .communityWrapper .itemBox .item .flexBox em{
    font-size: 1.2em;
    font-weight: 500;
    color: #B6B8BE;
}

#pageMain .communityWrapper .itemBox .item .contentBox{
    margin-bottom: 16px;
}

#pageMain .communityWrapper .itemBox .item .contentBox.active{
    padding-right: 146px;            
}

#pageMain .communityWrapper .itemBox .item .contentBox.active .imgBox{
    display: block;
}

#pageMain .communityWrapper .itemBox .item .contentBox h4{
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 6px;            
}

#pageMain .communityWrapper .itemBox .item .contentBox p{
    font-size: 1.5em;
    line-height: 1.5;
    margin-bottom: 12px;
}

#pageMain .communityWrapper .itemBox .item .contentBox .imgBox{
    display: none;
    position: absolute;
    right: 0px;
    top: 0px;
    max-width: 126px;
    width: 100%;
    height: 126px;
    border-radius: 5px;
    overflow: hidden;
}

#pageMain .communityWrapper .itemBox .item .contentBox .imgBox img{
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#pageMain .communityWrapper .itemBox .item .contentBox .imgBox::after{
    content: '';
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border: 1px rgba(50, 52, 60, 0.1) solid;
    border-radius: 5px;
    position: absolute;
    left: 0px;
    top: 0px;
}

#pageMain .communityWrapper .itemBox .item .btnBox a{
    margin-right: 8px;
}

#pageMain .communityWrapper .itemBox .item .btnBox span{
    font-size: 1.2em;
    font-weight: 500;
    color: #B6B8BE;
}

#pageMain .communityWrapper .itemBox .item .btnBox span img{
    margin-right: 2px;
}

#pageMain .communityWrapper .itemBox .item .btnBox em{
    display: inline-block;
    width: 2px;
    height:2px;
    border-radius: 50%;
    background: #B6B8BE;
    margin:0px 6px;
}

#pageMain .noticeWrapper{
    margin-bottom: 80px;
}

#pageMain .noticeWrapper .itemBox{
    gap: 20px;
}

#pageMain .noticeWrapper .itemBox .item{
    display: block;
    width:33.3%;
}

#pageMain .noticeWrapper .itemBox .item .inner{
    padding:14px 16px;
    background: #F1F2F3;
    border-radius: 10px;
    cursor: pointer;
}

#pageMain .noticeWrapper .itemBox .item h4{
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
    padding-right: 22px;
}

#pageMain .noticeWrapper .itemBox .item h4 a{
    position: absolute;
    right: 0px;
    top:50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
}

#pageMain .noticeWrapper .itemBox .item p{
    font-size: 1.3em;
    line-height: 1.4;
}

#pageMain .noticeWrapper .itemBox .noneData{
    padding:40px 0px;
}

#pageMain .noticeWrapper .itemBox .noneData p{
    margin-bottom: 0px;
}

#pageMain .mobileBox{
    display: none;
}

#pageMain .moreBtnBox{
    margin:8px 0px 80px;
    text-align: center;
}

#pageMain .moreBtnBox.custom{
    margin:8px 0px 56px;
}

#pageMain .moreBtn{
    display: inline-block;
    padding:0px 16px;
    width: auto;
    height: 40px;
    line-height: 40px;
    font-size: 1.5em;
    font-weight: 600;
}

@media screen and (max-width: 910px){
    #pageMain .titleText{
        margin-bottom: 16px;
    }

    #pageMain .titleText span {
        font-size: 1.8em;
    }

    #pageMain .titleText a{
        font-size: 1.4em;
    }

    #pageMain .titleText.active{
        margin-bottom: 16px;
    }

    #pageMain .menuWrapper {
        margin: 20px 0px 40px;
    }

    #pageMain .menuWrapper .imx{ 
        margin:0px;
    }
    
    #pageMain .menuWrapper .categoryBox {
        justify-content: unset;
        max-width: 100%;
        padding:0px 16px;
    }

    #pageMain .menuWrapper .categoryBox .item {
        margin: 0px 4px;
    }

    #pageMain .popularWrapper .imx{
        margin:0px;
    }

    #pageMain .popularWrapper .titleText{
        padding:0px 16px;
    }

    /* 공통 pc / mobile box css start */
    #pageMain .pcBox{
        display: none;
    }

    #pageMain .mobileBox{
        display: flex;
    }

    #pageMain .mobileBox .item{
        margin-right: 12px;        
    }

    #pageMain .mobileBox .item:last-child{
        margin-right: 0px !important;
    }
    /* 공통 pc / mobile box css end */

    #pageMain .popularWrapper .mobileBox{
        padding: 0px 16px 40px 16px;
    }

    #pageMain .popularWrapper .mobileBox.custom{
        display: block;
        overflow-x: hidden;
        padding:0px 16px 36px;
    }

    #pageMain .popularWrapper .mobileBox .item{
        flex: 0 0 240px;
        margin-right: 12px;
        cursor: pointer;
    }

    #pageMain .popularWrapper .mobileBox .item:last-child{
        margin-right: 0px;
    }

    #pageMain .popularWrapper .mobileBox .item::before{
        content:'';
        display: block;
        position: absolute;
        left: 0px;
        top:0px;
        width:100%;
        height:100%;
        z-index:0;
        box-shadow: 0px 1px 4px rgba(0,0,0,0.05);
        border-radius: 10px;
        background: none;
    }

    #pageMain .popularWrapper .mobileBox .item::after{
        content:'';
        display: block;
        position: absolute;
        left: 0px;
        top:0px;
        width:100%;
        height:100%;
        z-index:-1;
        box-shadow: 0px 6px 12px rgba(0,0,0,0.05);
        border-radius: 10px;
        background: none;
    }

    #pageMain .popularWrapper .mobileBox .item .inner{
        border-radius: 10px;
        overflow: hidden;
    }

    #pageMain .popularWrapper .mobileBox .item .imgBox{
        width: 100%;
        height: 180px;
        padding-top: 0px;
    }

    #pageMain .popularWrapper .mobileBox .item .imgBox .mainImg{
        position: absolute;
        left: 0px;
        top:0px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #pageMain .popularWrapper .mobileBox .item .imgBox .lankBox{
        left: 12px;
        top:12px;
    }

    #pageMain .popularWrapper .mobileBox .item .imgBox .lankBox img{
        width: 16px;
    }

    #pageMain .popularWrapper .mobileBox .item .imgBox .bookmark{
        right: 12px;
        top: 12px;
    }

    #pageMain .popularWrapper .mobileBox .item .textBox{
        padding:12px;
        background: #fff;
    }

    #pageMain .popularWrapper .mobileBox .item .textBox p{
        font-size: 1.2em;
        font-weight: 500;
        color: #7C8088;
        margin-bottom: 6px;
    }

    #pageMain .popularWrapper .mobileBox .item .textBox p img{
        width: 12px;
        display: inline-block;
        margin:0px 2px;
    }

    #pageMain .popularWrapper .mobileBox .item .textBox .titleBox{
        flex-wrap:nowrap;
        margin-bottom: 12px;
    }

    #pageMain .popularWrapper .mobileBox .item .textBox .titleBox h4{
        font-size: 1.2em;
        font-weight: 600;
    }

    #pageMain .popularWrapper .mobileBox .item .textBox .titleBox .subBox{        
        flex-wrap: nowrap;
        width: auto;
        justify-content: flex-end;
        flex: none;
    }

    #pageMain .popularWrapper .mobileBox .item .textBox .titleBox b{
        display: block;   
        width: 2px;
        height: 2px;
        background: #B6B8BE;
        border-radius: 50%;
        margin:0px 4px;
    }

    #pageMain .popularWrapper .mobileBox .item .textBox .titleBox span{
        font-size: 1.2em;
        font-weight: 600;
        color: #7C8088;                
        margin-right: 2px;
    }

    #pageMain .popularWrapper .mobileBox .item .textBox .titleBox span img{
        width: 12px;
        display: inline-block;
        margin-right: 2px;
    }

    #pageMain .popularWrapper .mobileBox .item .textBox .titleBox em{
        font-size: 1.2em;
        font-weight: 500;
        color: #B6B8BE;
    }

    #pageMain .popularWrapper .mobileBox .item .textBox .profileBox{
        font-size: 1.2em;
        font-weight: 600;
        margin-bottom: 6px;
    }

    #pageMain .popularWrapper .mobileBox .item .textBox .profileBox span{
        width: 20px;
        height: 20px;
        margin-right: 6px;                
    }

    #pageMain .popularWrapper .mobileBox .item .textBox .profileBox em img{
        display: inline-block;
        width: 16px;
    }

    #pageMain .popularWrapper .mobileBox .item .textBox .profileBox b{
        font-weight: 600;
        padding-top: 2px;
    }

    #pageMain .popularWrapper .mobileBox .item .textBox .profileBox b.custom{
        color:#7C8088;
    }

    #pageMain .popularWrapper .mobileBox .item .textBox .contentBox{
        font-size: 1.4em;
        line-height: 1.4;
        margin-bottom: 12px;
        height: 39px;
    }

    #pageMain .popularWrapper .mobileBox .item .textBox .btnBox em{
        font-size: 1.2em;
        font-weight: 500;
        color: #B6B8BE;
    }

    #pageMain .popularWrapper .mobileBox .item .textBox .btnBox img{
        width: auto;
        width: 15px;
    }

    #pageMain .categoryWrapper .imx.active{
        margin:0px;
    }

    #pageMain .categoryWrapper .categoryBox{
        padding: 0px 16px;
        margin-bottom: 16px;
    }

    #pageMain .categoryWrapper .categoryBox a em{
        font-size: 1.4em;
    }

    #pageMain .categoryWrapper .categoryBox a.active:hover{
        background: #ECE8FF;
        color: #7E49FF;
    }

    #pageMain .categoryWrapper .mobileBox{
        padding: 0px 16px 28px 16px;
        margin:0px;
    }

    #pageMain .categoryWrapper .mobileBox.custom{
        display: block;
        overflow-x: hidden;
        padding:0px 16px;
    }

    #pageMain .noneData{
        padding:64px 0px 80px;
    }

    #pageMain .noneData.custom{
        padding:64px 0px 44px;
    }

    #pageMain .categoryWrapper .mobileBox .item{
        flex: 0 0 176px;
        margin-bottom: 0px;
        padding:0px;
    }

    #pageMain .categoryWrapper .itemBox .item .inner .imgBox .textBox p img,
    #pageMain .categoryWrapper .itemBox .item .inner .infoBox .starBox img{
        width: auto;
        display: inline-block;
    }

    #pageMain .categoryWrapper .itemBox .item .inner:hover{
        top:0px;
    }

    #pageMain .categoryWrapper .itemBox .item .inner .likeBtn img{
        width: 15px;
    }

    #pageMain .bannerWrapper .imx{
        margin:0px;
    }

    #pageMain .bannerWrapper .inner{
        margin-bottom: 40px;
        border-radius: 0px;
        padding:32px 20px;
        text-align: center;
        display: block;
    }
    
    #pageMain .bannerWrapper .inner img{
        width: auto;
        height: 100px;
        margin-right: 0px;
        margin:0px auto 20px;
        display: block;
    }
    
    #pageMain .bannerWrapper .leftBox{
        display: block;
    }

    #pageMain .bannerWrapper .inner h3{
        margin-bottom: 12px;
    }
    
    #pageMain .bannerWrapper .inner p{
        margin-bottom: 20px;
    }
    
    #pageMain .bannerWrapper .inner a{
        margin:auto;
        width: 137px;
        height: 32px;
    }

    #pageMain .communityWrapper{
        margin-bottom: 52px;
    }

    #pageMain .communityWrapper .itemBox .item{
        width: 100%;
        padding:0px 16px;
        margin-bottom: 0px;
    }            

    #pageMain .communityWrapper .itemBox .item:nth-child(odd){
        padding:0px 16px;
    }

    #pageMain .communityWrapper .itemBox .item:nth-child(even){
        padding:0px 16px;
    }

    #pageMain .communityWrapper .itemBox .item:nth-child(n+4){
        display: none;
    }

    #pageMain .communityWrapper .itemBox .item .inner{
        margin-bottom: 18px;
        padding-bottom: 16px;
        border-bottom: 1px #E6E8EC solid;
    }

    #pageMain .communityWrapper .itemBox .item:nth-child(3) .inner{
        padding-bottom: 16px;
        margin-bottom: 12px;   
        border-bottom: 0px;
    }

    #pageMain .communityWrapper .itemBox .item .inner .lankBox{
        display: flex;
        width: 44px;
        height: 24px;
        border-radius: 8px;
        background: #ECE8FF;
        color: #7E49FF;
        font-size: 1.2em;
        font-weight: 600;
        margin-bottom: 12px;
    }

    #pageMain .communityWrapper .itemBox .item .inner .lankBox img{
        margin-right: 2px;
    }

    #pageMain .communityWrapper .itemBox .item .contentBox{
        margin-bottom: 0px;
    }

    #pageMain .communityWrapper .itemBox .item .contentBox.active{
        padding-right: 80px;
    }

    #pageMain .communityWrapper .itemBox .item .contentBox .imgBox{
        max-width: 64px;
        height: 64px;
    }                    

    #pageMain .communityWrapper .itemBox .item .contentBox p{
        font-size: 1.4em;
        -webkit-line-clamp: 2;
    }

    #pageMain .communityWrapper .itemBox .item .contentBox h4{
        font-size: 1.6em;
    }

    #pageMain .communityWrapper .itemBox .item .contentBox .profileBox{
        margin-bottom: 0px;
    }

    #pageMain .communityWrapper .itemBox .item .btnBox{
        position: absolute;
        right: 0px;
        bottom:13px;
    }

    #pageMain .communityWrapper .itemBox .item .btnBox .likeBtn:nth-child(1){
        order: 1;
        margin-right: 0px;
        margin-left: 8px;
    }

    #pageMain .communityWrapper .itemBox .item .btnBox em{
        margin:0px 4px;
    }
    
    #pageMain .noticeWrapper{
        margin-bottom: 40px;
        overflow: hidden;
    }

    #pageMain .noticeWrapper .imx.active{
        margin:0px;
    }

    #pageMain .noticeWrapper .itemBox{
        gap: 0px;
        margin:0px;
        padding:0px 16px;
    }

    #pageMain .noticeWrapper .itemBox .item{
        flex: 0 0 240px;
        padding:0px;
        margin-right: 12px;
    }

    #pageMain .noticeWrapper .itemBox .item:last-child{
        margin-right: 0px;
    }

    #pageMain .moreBtnBox,
    #pageMain .moreBtnBox.custom{
        margin:0px 0px 52px;
    }

    #pageMain .moreBtnBox .moreBtn{
        width: calc(100% - 32px);
    }
    
    #pageMain .moreBtnBox.custom .moreBtn{
        width: 100%;
    }
}
/* index css end */

/* login css start */
#pageLogin .loginWrapper{
    height: auto;
    padding:120px 0px;
}

#pageLogin .loginWrapper .row{
    max-width: 360px;
}

#pageLogin .loginWrapper .mainImg{
    height: 48px;
    display: block;
    margin:0px auto 40px;
}

#pageLogin .loginWrapper form ul li{
    margin-bottom: 20px;
}

#pageLogin .loginWrapper form ul li:last-child{
    margin-bottom: 40px;
}

#pageLogin .loginWrapper form ul li span{
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 1.2em;
    color: #505258;
}

#pageLogin .loginWrapper form ul li p{
    font-size: 1.2em;
    color: #FF2C20;
    margin-top: 6px;
    display: none;
}

#pageLogin .loginWrapper form ul li .findPw{
    text-align: right;    
    margin-top: 12px;
}

#pageLogin .loginWrapper form ul li .findPw a img{
    vertical-align: middle;
    margin-left: 4px;
}

#pageLogin .loginWrapper form ul li .findPw a em{
    vertical-align: middle;
    color: #7C8088;
    font-weight: 600;
    font-size: 1.4em;
}

#pageLogin .loginWrapper form .btnBox a{
    width: 100%;   
    height: 48px;
    font-size: 1.6em;
    font-weight: bold;
}

#pageLogin .loginWrapper form .btnBox a:first-child{
    margin-bottom: 12px;
}

@media screen and (max-width: 910px){
    #pageLogin{
        padding:0px;
    }

    #pageLogin .loginWrapper{
        height: 100vh;
        padding:0px;
    }

    #pageLogin .loginWrapper .row{
        max-width: 100%;
        position: absolute;
        left: 0px;
        top:47%;
        transform: translateY(-50%);
    }
}
/* login css end */

/* signUp css start */
#pageSignUp .signUpWrapper{
    padding:80px 0px 120px;
}

#pageSignUp .signUpWrapper .row{
    max-width: 360px;
}

#pageSignUp .signUpWrapper .logoImg{
    display: none;
}

#pageSignUp .signUpWrapper h2{
    font-size: 2.4em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

#pageSignUp .signUpWrapper form button{
    width: 100%;
    height: 48px;
    font-size: 1.5em;
    font-weight: bold;
}

#pageSignUp .signUpWrapper form .loginBtn{
    text-align: center;
    margin-top: 20px;
}

#pageSignUp .signUpWrapper form .loginBtn a{
    font-size: 1.4em;
    font-weight: 600;
    color: #7C8088;
}

#pageSignUp .signUpWrapper form .loginBtn a em{
    vertical-align: middle;
}

#pageSignUp .signUpWrapper form .loginBtn a img{
    margin-left: 4px;
    vertical-align: middle;
}

@media screen and (max-width: 910px){
    #pageSignUp{
        padding-top: 40px;
    }

    #pageSignUp .signUpWrapper{
        padding:0px 0px 136px;
    }
    
    #pageSignUp .signUpWrapper .row{
        max-width: 100%;
    }
    
    #pageSignUp .signUpWrapper .logoImg{
        display: block;
        width: 32px;
        height: 32px;
        margin-bottom: 40px;
    }

    #pageSignUp .signUpWrapper h2{
        text-align: left;
    }
}
/* signUp css end */

/* signUpComplete css start */
#pageSignUpComplete .completeWrapper{
    padding:120px 0px;
    text-align: center;
}

#pageSignUpComplete .completeWrapper .logoImg{
    display: none;
}

#pageSignUpComplete .completeWrapper .mainImg{
    display: inline-block;
    width: 116px;
    margin-bottom: 24px;
}

#pageSignUpComplete .completeWrapper h3{
    font-size: 2.4em;
    font-weight: bold;
    margin-bottom: 16px;
}

#pageSignUpComplete .completeWrapper p{
    font-size: 1.5em;
    font-weight: 500;
    margin-bottom: 44px;
}

#pageSignUpComplete .completeWrapper .btnBox{
    margin:0px auto 20px;
    max-width: 328px;
}

#pageSignUpComplete .completeWrapper .btnBox a{
    font-size: 1.5em;
    font-weight: 600;
    width: calc(100% - 50% - 6px);
    height: 48px;
}

#pageSignUpComplete .completeWrapper .homeBtn{
    font-size: 1.4em;
    font-weight: 600;
    color: #7C8088;
}

@media screen and (max-width: 910px){
    #pageSignUpComplete{
        padding:0px;
    }

    #pageSignUpComplete .completeWrapper{
        padding:0px;
    }

    #pageSignUpComplete .completeWrapper .imx{
        padding-top: 40px;
        height: 100vh;
    }
    
    #pageSignUpComplete .completeWrapper .logoImg{
        display: block;
        width: 32px;
        height: 32px;
    }

    #pageSignUpComplete .completeWrapper p{
        margin-bottom: 0px;
    }

    #pageSignUpComplete .completeWrapper .textBox{
        position: absolute;
        left:50%;
        top:45%;
        transform: translate(-50%,-50%);
        width: 100%;
    }

    #pageSignUpComplete .completeWrapper .bottomBox{
        position: absolute;
        bottom: 24px;
        left: 0px;
        width: 100%;        
    }
    
    #pageSignUpComplete .completeWrapper .bottomBox .btnBox{
        max-width:100%;
    }
}
/* signUpComplete css end */

/* myPage css start */
.subHeaderType1{
    display: none;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 9990;
    background: #fff;
}

.subHeaderType1 .inner{
    height: 64px;
}

.subHeaderType1 .inner h3{
    font-size: 1.8em;
    font-weight: bold;
}

.subHeaderType1 .inner .btnBox a{
    margin-left: 20px;
    width: 24px;
    height: 24px;
    display: inline-block;
}

.subHeaderType1 .inner .btnBox a span {
    display: none;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #FF2C20;
    position: absolute;
    right: 0px;
    top: 0px;
}

.subHeaderType1 .inner .btnBox a span.active{
    display: block;
}

.pageUserInfo .contentWrapper .leftBox{
    position:sticky;
    left: 0px;
    top: 65px;
    padding-top: 72px;
    width: 268px;
}

.pageUserInfo .contentWrapper .leftBox li:not(:last-child){
    margin-bottom: 54px;    
}

.pageUserInfo .contentWrapper .leftBox a{
    display: inline-block;
    font-size: 1.6em;
    font-weight: bold;
    color: #505258;
    margin-left: 24px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.pageUserInfo .contentWrapper .leftBox a:hover{
    color: #0E0E10;
}

.pageUserInfo .contentWrapper .leftBox a.active{
    color: #7E49FF;
}

.pageUserInfo .contentWrapper .rightBox{
    width: calc(100% - 268px);
    padding:56px 0px 0px 16px;
    border-left: 1px #E6E8EC solid;
    display: flex;
    justify-content: flex-end;
    min-height: calc(100vh - 282px);
}

.pageUserInfo .contentWrapper .rightBox.custom{
    border-left: 0px;
    min-height: auto;
    width: 100%;
    max-width: 558px;
    margin:auto;
    padding:56px 0px 0px;
}

.pageUserInfo .contentWrapper .rightBox .inner{
    max-width: 558px;
    width: 100%;    
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox{    
    margin-bottom: 40px;
    min-height: 102px;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .profileBox{
    padding-left: 134px;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .profileBox.custom{
    height: 72px;
    padding-left: 92px;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .imgBox{
    position: absolute;
    left: 0px;
    top:0px;
    width: 102px;
    height: 102px;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .imgBox .userProfile{
    width: 102px;
    height: 102px;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .imgBox .userProfile.custom{
    width: 72px;
    height: 72px;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .nameBox h3{
    font-weight: bold;
    font-size: 2em;
    margin-bottom: 10px;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .nameBox p{
    font-size: 1.4em;
    word-break: keep-all;
    line-height: 1.4;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .nameBox ul{
    cursor: pointer;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .nameBox ul.custom{
    cursor:unset;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .nameBox ul li{
    font-size: 1.4em;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .nameBox ul li:not(:last-child),
.pageUserInfo .contentWrapper .rightBox .inner .userBox .nameBox ul.custom li{
    padding-right: 12px;
    margin-right: 12px;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .nameBox ul li:not(:last-child)::after,
.pageUserInfo .contentWrapper .rightBox .inner .userBox .nameBox ul.custom li::after{
    content: '';
    display: block;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(50,52,60,0.1);
    width: 1px;
    height: 20px;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .nameBox ul li span{
    color:#505258;
    font-weight: 500;
    margin-right: 4px;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .nameBox ul li em{
    color:#32343C;
    font-weight: 600;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .commentBox{
    font-size: 1.4em;    
    padding-left: 134px;
    margin-top: 10px;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .commentBox.custom{
    margin-top: 20px;
    padding-left: 0px;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .commentBox.active,
.pageUserInfo .contentWrapper .rightBox .inner .userBox .commentBox.custom.active{
    padding-left: 0px;
    margin-top: 0px;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .commentBox p{
    max-height: calc(1.4em * 3); /* 3줄 기준 */
    line-height: 1.4em;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .commentBox.expanded p{
    -webkit-line-clamp: unset;
    max-height: none;
    overflow: visible;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .commentBox em{
    margin-top: 4px;
    display: inline-block;
    color: #7C8088;
    cursor: pointer;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .btnBox{
    margin-top: 16px;
    padding-left: 134px;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .btnBox a{
    width: 108px;
    height: 32px;
    font-size: 1.4em;
    font-weight: 600;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .btnBox a.mobileShareBtn{
    display: none;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .btnBox a:first-child{
    margin-right: 12px;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .btnBox a img{
    margin-right: 4px;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .btnBox.custom{
    margin-top: 20px;
    padding-left: 0px;
    width: 100%;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .btnBox.custom a{
    width: calc(100% - 50% - 6px);
    height: 40px;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .btnBox.custom a.btnType3:hover{
    background: #F1F2F3;
    border: 1px #F1F2F3 solid;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .btnBox.custom a.followBtn{
    background: #7E49FF;
    color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.pageUserInfo .contentWrapper .rightBox .inner .userBox .btnBox.custom a.followBtn.active{
    background: #F1F2F3;
    color: #32343C;
}

.pageUserInfo .contentWrapper .rightBox .inner .menuBox{
    margin-bottom: 20px;
}

.pageUserInfo .contentWrapper .rightBox .inner .menuBox .statusBar{
    position: absolute;
    bottom: 0px;
    width: 33.3%;
    left: 0%;
    height: 2px;
    border-radius: 10px;
    background: #0E0E10;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.pageUserInfo .contentWrapper .rightBox .inner .menuBox .statusBar.custom{
    width: 50%;
}

.pageUserInfo .contentWrapper .rightBox .inner .menuBox a{
    border-bottom: 1px rgba(50, 52, 60, 0.1) solid;
    height: 40px;
    font-size: 1.5em;
    font-weight: 600;
    color: #7C8088;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;    
}

.pageUserInfo .contentWrapper .rightBox .inner .menuBox a.active{
    color: #0E0E10;
    pointer-events: none;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox{
    display: none;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox:first-child{
    display: block;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .typeBox{
    width: 100%;
    height: 40px;
    background: #F1F2F3;
    border-radius: 10px;
    padding:4px;
    margin-bottom: 20px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .typeBox a{
    height: 100%;
    font-size: 1.4em;
    font-weight: 600;
    color: #7C8088;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    z-index: 1;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .typeBox a.active{
    color: #32343C;
    pointer-events: none;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .typeBox .statusBar{
    width: calc(100% - 50% - 4px);
    height: calc(100% - 8px);
    background: #fff;
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    border-radius: 8px;
    border: 1px #DADCE2 solid;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .categoryBox{
    margin-bottom: 20px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .categoryBox a{
    flex: 0 0 auto;
    padding:0px 12px;
    border:1px rgba(50, 52, 60, 0.15) solid;
    height: 28px;
    margin-right: 8px;
    border-radius: 14px;
    color: #32343C;
    font-size: 1.2em;
    font-weight: 600;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .categoryBox a.active{
    border:1px #32343C solid;
    background: #32343C;
    color: #fff;
    pointer-events: none;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .categoryBox a:last-child{
    margin-right: 0px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .countBox{
    margin-bottom: 28px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .countBox span{
    font-size: 1.2em;
    font-weight: 500;
    color: #7C8088;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div{
    display: none;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div:first-child{
    display: block;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .pcBox .item{
    cursor: pointer;
    border-bottom: 1px #E6E8EC solid;
    padding-bottom: 20px;
    margin-bottom: 20px;    
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .pcBox .item:last-child{
    border-bottom: 0px;
    padding-bottom: 0px;
    margin-bottom: 98px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .titleBox{
    margin-bottom: 12px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .titleBox p{
    font-size: 1.2em;
    font-weight: 500;
    color: #7C8088;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .titleBox img{
    margin:0px 2px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .titleBox em{
    font-size: 1.2em;
    font-weight: 500;
    color:#B6B8BE;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .nameBox{
    margin-bottom: 12px;
    flex-wrap: nowrap;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .nameBox.reviewListBtn{
    display: inline-flex;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .nameBox h3{
    font-size: 1.6em;
    font-weight: 600;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .nameBox .arrowIcon{
    margin-left: 4px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .nameBox em{
    display: inline-block;
    width: 2px;
    height: 2px;
    background: #B6B8BE;
    border-radius: 50%;
    margin:0px 4px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .nameBox b{
    font-size: 1.2em;
    font-weight: 600;
    color: #7C8088;
    margin:0px 2px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .nameBox span{
    font-size: 1.2em;
    font-weight: 500;
    color: #B6B8BE;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .nameBox > div{
    justify-content: flex-end;
    flex-wrap: nowrap;
    width: auto;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .starBox{
    margin-bottom: 12px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .starBox img{
    width: 20px;
    height: 20px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .pcBox .infoBox p{
    line-height: 1.4;
    font-size: 1.4em;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .profileBox{
    margin-top: 12px;
    margin-bottom: 12px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .profileBox.custom{
    margin:0px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .profileBox > div > div{
    width: 20px;
    height: 20px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .profileBox span{
    padding-top: 2px;
    font-size: 1.2em;
    font-weight: 600;
    margin-left: 6px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .profileBox span.custom{
    color: #7C8088;
}

/* 수정 시작 */

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .imgBox{
    margin-top: 12px;
    justify-content: flex-start;
    gap: 9px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .imgBox .imgItem{
    flex: 0 0 calc(20% - 7px);
    box-sizing: border-box;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .imgBox .imgItem .imgInner{
    width: 100%;
    padding-bottom: 100%;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .imgBox .imgItem .imgInner::after{
    content: '';
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border:1px rgba(50, 52, 60, 0.1) solid;
    border-radius: 5px;
    position: absolute;
    left: 0px;
    top: 0px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .imgBox .imgItem .imgInner img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .pcBox .infoBox .bookmark{
    width: 24px;
    height: 24px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .pcBox .optionBox{
    margin-top: 16px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .pcBox .optionBox .likeBox a{
    margin-right: 0px;
    margin-left: 8px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox.typeMyPost .contentBox > div .pcBox .optionBox .likeBox a{
    margin-left: 0px;
    margin-right: 8px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .pcBox .optionBox .iconBox{
    font-size: 1.2em;
    font-weight: 500;
    color: #B6B8BE;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .pcBox .optionBox .iconBox img{
    margin-right: 2px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .pcBox .optionBox .likeBox em {
    display: inline-block;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #B6B8BE;
    margin: 0px 7px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .pcBox .optionBox .btnBox a{
    margin-left: 8px;
    width: 56px;
    height: 32px;
    font-size: 1.4em;
    font-weight: 600;
    color: #32343C;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox .noneData{
    padding:40px 0px;
    text-align: center;
    margin-bottom: 80px;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox .noneData p{
    margin:16px 0px;
    font-size: 1.5em;
    font-weight: 500;
    color: #7C8088;
}

.pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox .noneData a{
    display: inline-block;
    font-size: 1.4em;
    font-weight: 600;
    padding:0px 12px;
    height: 32px;
    line-height: 32px;
    margin:auto;
}

@media screen and (max-width: 910px){
    .subHeaderType1, .subHeaderType2{
        display: block;
    }

    #pageUser{
        padding-top: 49px;
    }

    .pageUserInfo .contentWrapper .imx{
        margin:0px;
    }

    .pageUserInfo .contentWrapper .leftBox{
        display: none;
    }

    .pageUserInfo .contentWrapper .rightBox{
        border-left: 0px;
        padding:20px 0px 0px;
        width: 100%;
        min-height: auto;
    }

    .pageUserInfo .contentWrapper .rightBox.custom{
        padding:20px 0px 0px;
        max-width: 100%;
    }

    .pageUserInfo .contentWrapper .rightBox .inner{
        width: 100%;
        max-width: 100%;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .userBox{
        min-height: auto;
        padding:0px 16px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .userBox .profileBox{
        padding-left: 88px;
        height: 72px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .userBox .profileBox.custom{
        padding-left: 88px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .userBox .imgBox,
    .pageUserInfo .contentWrapper .rightBox .inner .userBox .imgBox .userProfile{
        width: 72px;
        height: 72px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .userBox .nameBox h3{
        font-size: 1.6em;
        font-weight: 600;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .userBox .nameBox ul li{
        font-size: 1.2em;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .userBox .nameBox ul li:not(:last-child)::after,
    .pageUserInfo .contentWrapper .rightBox .inner .userBox .nameBox ul.custom li::after{
        height: 16px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .userBox .commentBox{
        font-size: 1.3em;
        margin-top: 16px;
        padding-left: 0px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .userBox .commentBox.custom{
        margin-top: 16px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .userBox .commentBox p{
        max-height: 54px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .userBox .commentBox em{
        margin-top: 3px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .userBox .btnBox{
        padding-left: 0px;
        justify-content: space-between;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .userBox .btnBox a{
        width: calc(100% - 50% - 4px);
    }

    .pageUserInfo .contentWrapper .rightBox .inner .userBox .btnBox a.pcShareBtn{
        display: none;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .userBox .btnBox a.mobileShareBtn{
        display: flex;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .userBox .btnBox.custom{
        margin-top: 16px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .userBox .btnBox.custom a{
        width: calc(100% - 50% - 4px);
        height: 32px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .userBox .btnBox a:first-child{
        margin-right: 0px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .menuBox{
        margin:0px 16px 16px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .menuBox::after{
        content: '';
        width: calc(100% + 32px);
        height: 1px;
        position: absolute;
        transform: translateX(-50%);
        left: 50%;
        bottom:0px;
        background: rgba(50, 52, 60, 0.1);
    }

    .pageUserInfo .contentWrapper .rightBox .inner .menuBox a{
        border-bottom: 0px;
    }    

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .typeBox{
        width: calc(100% - 32px);
        margin:0px auto 16px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .categoryBox{
        padding:0px 16px 16px 16px;
        margin-bottom: 16px;
        border-bottom: 1px #E6E8EC solid;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .categoryBox::after{
        content: '';
        display: flex;
        width: 16px;
        height: 28px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .countBox{
        padding:0px 16px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .titleBox{
        margin-bottom: 8px;
        padding: 0px 16px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox .communityBox > div .titleBox{
        margin-bottom: 12px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .communityBox .nameBox{
        margin-bottom: 6px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .pcBox .infoBox{
        padding:0px 16px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .pcBox .infoBox p{
        -webkit-line-clamp: 3;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > .communityBox .pcBox .infoBox{
        padding-right: 118px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > .communityBox .pcBox .infoBox p{
        height: 60px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .pcBox .item{
        border-bottom: 0px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .pcBox .item::after{
        content: '';
        width: calc(100% - 32px);
        height: 1px;
        background: #E6E8EC;
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
    }

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .pcBox .item:last-child{
        margin-bottom: 104px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .pcBox .item:last-child::after{
        display: none;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .imgBox{
        padding:0px 16px;
        gap: 0px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .imgBox .imgItem{
        flex: 0 0 120px;
        margin-right: 8px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .imgBox .imgItem:last-child{
        margin-right: 0px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox .communityBox > div .imgBox{
        width: 86px;
        height: 86px;
        padding: 0px;
        margin: 0px;
        position: absolute;
        top: 26px;
        right: 16px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox .communityBox > div .imgBox .imgItem{
        display: none;
        margin-right: 0px;
        flex: none;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox .communityBox > div .imgBox .imgItem:first-child{
        display: block;
        width: 100%;
        height: 100%;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox.typeMyPost .contentBox > div .optionBox .likeBox{
        width: 100%;
        justify-content: space-between;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox.typeMyPost .contentBox > div .optionBox .likeBox a{
        order: 2;
        margin-right: 0px !important;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .pcBox .optionBox{
        padding:0px 16px;
        margin-top: 12px;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .pcBox .optionBox .btnBox{
        width: 100%;
        margin-top: 12px;
        justify-content: space-between;
    }

    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox > div .pcBox .optionBox .btnBox a{
        width: calc(100% - 50% - 4px);
        height: 32px;
        font-size: 1.4em;
        font-weight: 600;
        margin-left: 0px;
    }
    
    .pageUserInfo .contentWrapper .rightBox .inner .itemWrapper .itemBox .contentBox .noneData{
        margin-bottom: 92px;
    }
}
/* myPage css end */

/* profile css start */
.subHeaderType2{
    display: none;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 9990;
    background: #fff;
    border-bottom: 1px solid rgba(50,52,60,0.1);
}

.subHeaderType2 .inner{
    height: 48px;
    width: 100%;
}

.subHeaderType2 .inner h3{
    font-size: 1.6em;
    font-weight: 600;
}

.subHeaderType2 .inner .closeBtn{
    position: absolute;
    left: 0px;
    top:50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
}

.subHeaderType2 .inner .resultBtn{
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    color: #7E49FF;
    pointer-events: all;
    font-size: 1.4em;
    font-weight: 600;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.subHeaderType2 .inner .resultBtn.disabled{
    color: #DCD4FF;
    pointer-events: none;
}

.subHeaderType2 .inner .subBtn{
    position: absolute;
    right: 0px;
    top: 52%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
}

#pageProfile .contentWrapper{
    padding:80px 0px 120px;
}

#pageProfile .contentWrapper .inner{
    margin:auto;
    max-width: 328px;
    width: 100%;
}

#pageProfile .contentWrapper h3{
    font-size: 2.4em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

#pageProfile .contentWrapper .imgBox{
    width: 102px;
    margin:0px auto 40px;
    text-align: center;
}

#pageProfile .contentWrapper .imgBox p{
    width: 102px;
    height: 102px;
}

#pageProfile .contentWrapper .imgBox p img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
}

#pageProfile .contentWrapper .imgBox p::after {
    content: '';
    border: 1px rgba(50, 52, 60, 0.1) solid;
    width: 100px;
    height: 100px;
    background: none;
    border-radius: 50%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 10;
}

#pageProfile .contentWrapper .imgBox .profileImageUploadBtn{
    position: absolute;
    right: 0px;
    top: 78px;
    width: 24px;
    height: 24px;
    z-index: 10;
}

#pageProfile .contentWrapper .imgBox .profileImageDelete{
    margin-top: 16px;
    display: inline-block;
    font-size: 1.4em;
    color: #7C8088;
    font-weight: 600;
}

#pageProfile .contentWrapper .imgBox input[type="file"]{
    width: 0px;
    height: 0px;
    display: none;
}

#pageProfile .contentWrapper ul li{
    margin-bottom: 20px;
}

#pageProfile .contentWrapper ul li:last-child{
    margin-bottom: 40px;
}

#pageProfile .contentWrapper ul li span{
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 6px;
    color: #505258;
    display: block;
}

#pageProfile .contentWrapper ul li p{
    display: block;
    color: #7C8088;
    font-size: 1.2em;
    margin-bottom: 6px;
}

#pageProfile .contentWrapper ul li .inputBtnBox{
    padding-right: 108px;
}

#pageProfile .contentWrapper ul li .inputBtnBox a{
    position: absolute;
    right: 0px;
    top: 0px;
    border-radius: 8px;
    width: 96px;
    height: 48px;
    font-size: 1.5em;
    font-weight: bold;
}

#pageProfile .contentWrapper ul li .warningText{
    display: none;
    margin-top: 6px;
    color: #FF2C20;
    font-size: 1.2em;
}

#pageProfile .contentWrapper textarea{
    width: 100%;
    height: 200px;
    margin-bottom: 6px;
}

#pageProfile .contentWrapper .flexBox5{
    font-size: 1.2em;
    color: #7C8088;
}

#pageProfile .contentWrapper .inner > a{
    width: 100%;
    height: 48px;
    font-size: 1.5em;
    font-weight: 600;
}

@media screen and (max-width: 910px){
    .subHeaderType2{
        display: block;
    }

    #pageProfile{
        padding-top: 49px;
    }

    #pageProfile .contentWrapper{
        padding:40px 0px 56px;
    }

    #pageProfile .contentWrapper h3,
    #pageProfile .contentWrapper .inner > a{
        display: none;
    }

    #pageProfile .contentWrapper .imgBox{
        width: auto;
    }

    #pageProfile .contentWrapper .imgBox p{
        width: 72px;
        height: 72px;
        margin:auto;
    }

    #pageProfile .contentWrapper .imgBox p::after{
        width: 70px;
        height: 70px;
    }

    #pageProfile .contentWrapper .imgBox .profileImageUploadBtn{
        width: 20px;
        height: 20px;
        top: 52px;
        left:50%;
        transform: translateX(calc(-50% + 26px));
    }

    #pageProfile .contentWrapper .imgBox .profileImageDelete{
        font-size: 1.2em;
        margin-top: 12px;
    }
}
/* profile css end */

/* setting css start */
#pageSetting .contentWrapper h2{
    font-size: 2.4em;
    font-weight: bold;
    margin-bottom: 40px;
}

#pageSetting .contentWrapper p{
    font-size: 1.2em;
    font-weight: 600;
    color: #505258;
    margin-bottom: 20px;
}

#pageSetting .contentWrapper .rightBox{
    padding:56px 0px 80px 20px
}

#pageSetting .contentWrapper .rightBox ul{
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px #E6E8EC solid;
}

#pageSetting .contentWrapper .rightBox ul:last-child{
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: 0px;
}

#pageSetting .contentWrapper .rightBox ul:last-child{
    padding-bottom: 0px;
    margin-bottom: 0px;
}

#pageSetting .contentWrapper .rightBox ul:last-child::after{
    content: none;
}

#pageSetting .contentWrapper .rightBox ul li{
    height: 40px;
    margin-bottom: 24px;
}

#pageSetting .contentWrapper .rightBox ul li.logoutBox{
    display: none;
}

#pageSetting .contentWrapper .rightBox ul li:last-child{
    margin-bottom: 0px;
}

#pageSetting .contentWrapper .type1 li span{
    position: absolute;
    left: 0px;
    top:50%;
    transform: translateY(-50%);
    font-size: 1.6em;
    font-weight: 600;
    color: #32343C;
}

#pageSetting .contentWrapper .type1 li div{
    padding: 0px 72px 0px 96px;
    width: 100%;
    height: 100%;
}

#pageSetting .contentWrapper .type1 li.custom div{
    padding: 0px 0px 0px 96px;
}

#pageSetting .contentWrapper .type1 li div em{
    color: #505258;
    font-size: 1.5em;
}

#pageSetting .contentWrapper .type1 li div a{
    position: absolute;
    right: 0px;
    top:50%;
    transform: translateY(-50%);
    font-size: 1.4em;
    font-weight: 600;
    color: #32343C;
    width: 56px;
    height: 32px;
}

#pageSetting .contentWrapper .type2 li{
    padding-right: 68px;
}

#pageSetting .contentWrapper .type2 li span{
    display: block;
    font-size: 1.6em;
    font-weight: 600;
    color: #32343C;
    margin-bottom: 6px;
}

#pageSetting .contentWrapper .type2 li em{
    display: block;
    font-size: 1.2em;
    font-weight: 500;
    color: #7C8088;
}

#pageSetting .contentWrapper .type2 li .checkBtn{
    position: absolute;
    right: 0px;
    top:50%;
    transform: translateY(-50%);
    background: #B6B8BE;
    width: 52px;
    height: 32px;
    border-radius: 100px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

#pageSetting .contentWrapper .type2 li .checkBtn::after{
    content: '';
    position: absolute;
    top:50%;
    left: 4px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

#pageSetting .contentWrapper .type2 li .checkBtn.active{
    background: #7E49FF;
}

#pageSetting .contentWrapper .type2 li .checkBtn.active::after{
    left: 24px;
}

#pageSetting .contentWrapper .type2 li .checkBtn input{
    width: 0px;
    height: 0px;
    display: none;
}

#pageSetting .contentWrapper .type3 li a{
    height: 100%;
}

#pageSetting .contentWrapper .type3 li a span{
    font-size: 1.6em;
    font-weight: 600;
    color: #32343C;
}

#pageSetting .contentWrapper .type4 a{
    display: inline-block;
    font-size: 1.6em;
    font-weight: 600;
    color: #7C8088;
}

@media screen and (max-width: 910px){
    #pageSetting{
        padding-top: 49px;
    }

    #pageSetting .contentWrapper .rightBox{
        padding:20px 16px 96px 16px;
    }

    #pageSetting .contentWrapper h2{
        color: #505258;
        font-size: 1.2em;
        font-weight: 600;
        margin-bottom: 20px;
    }

    #pageSetting .contentWrapper .rightBox ul{
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 0px;
    }

    #pageSetting .contentWrapper .rightBox ul::after{
        content: '';
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        background: #E6E8EC;
        width: calc(100% + 32px);
        height: 1px;
    }

    #pageSetting .contentWrapper .rightBox ul li{
        margin-bottom: 20px;
    }

    #pageSetting .contentWrapper .rightBox ul li.logoutBox{
        display: flex;
    }
}
/* setting css end */

/* review detail css start */
#pageReviewDetail{
    padding:104px 0px 80px;
}

#pageReviewDetail .contentWrapper .titleBox{
    padding-bottom: 17px;
    margin-bottom: 21px;
    border-bottom: 1px #E6E8EC solid;
}

#pageReviewDetail .contentWrapper .titleBox .categoryBox{
    font-size: 1.4em;
    font-weight: 500;
    color: #505258;
    margin-bottom: 8px;
}

#pageReviewDetail .contentWrapper .titleBox .categoryBox img{
    margin:0px 2px;
}

#pageReviewDetail .contentWrapper .titleBox .nameBox{
    font-size: 2em;
    font-weight: 600;
    padding-right: 19px;
    margin-bottom: 8px;
    display: inline-block;
    line-height: 1.3;
}

#pageReviewDetail .contentWrapper .titleBox .locationBox{
    display: inline-block;
    margin-bottom: 8px;
    font-size: 1.3em;
    color: #505258;
    word-break: keep-all;
    line-height: 1.4;
}

#pageReviewDetail .contentWrapper .titleBox .locationBox em{
    font-weight: 600;
    color: #7E49FF;
    margin-left: 6px;
}

#pageReviewDetail .contentWrapper .titleBox .nameBox img{
    position: absolute;
    right: 0px;
    top:5px;
}

#pageReviewDetail .contentWrapper .titleBox .countBox img{
    margin-right: 2px;
}

#pageReviewDetail .contentWrapper .titleBox .countBox em{
    font-size: 1.2em;
    font-weight: 600;
    color: #7C8088;
    margin-right: 2px;
}

#pageReviewDetail .contentWrapper .titleBox .countBox span{
    font-size: 1.2em;
    font-weight: 500;
    color: #B6B8BE;
}

#pageReviewDetail .contentWrapper .contentBox .userBox{
    margin-bottom: 16px;
}

#pageReviewDetail .contentWrapper .contentBox .userBox a span{
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 6px;
}

#pageReviewDetail .contentWrapper .contentBox .userBox a span::after {
    content: '';
    border: 1px rgba(50, 52, 60, 0.1) solid;
    width: 30px;
    height: 30px;
    background: none;
    border-radius: 50%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 2;
}

#pageReviewDetail .contentWrapper .contentBox .userBox a span img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#pageReviewDetail .contentWrapper .contentBox .userBox a em{
    font-size: 1.5em;
    font-weight: 600;
}

#pageReviewDetail .contentWrapper .contentBox .userBox a em.custom{
    color: #7C8088;
}

#pageReviewDetail .contentWrapper .contentBox .userBox b{
    margin-left: 12px;
}

#pageReviewDetail .contentWrapper .contentBox .starBox{
    margin-bottom: 16px;
}

#pageReviewDetail .contentWrapper .contentBox .starBox img{
    width: 20px;
    height: 20px;
}

#pageReviewDetail .contentWrapper .contentBox .starBox p{
    font-size: 1.2em;
    font-weight: 500;
    color: #B6B8BE;
    margin-left: 8px;
}

#pageReviewDetail .contentWrapper .contentBox .starBox .optionBox a{
    font-size: 1.2em;
    font-weight: 600;
    color: #7C8088;
}

#pageReviewDetail .contentWrapper .contentBox .starBox .optionBox a.custom{
    padding-left: 12px;
    margin-left: 12px;
}

#pageReviewDetail .contentWrapper .contentBox .starBox .optionBox a.custom::after{
    content: '';
    position: absolute;
    left: 0px;
    top:50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: #E6E8EC;
}

#pageReviewDetail .contentWrapper .contentBox .imgBox{
    margin-bottom: 16px;
    border-radius: 5px;
    overflow: hidden;
}

#pageReviewDetail .contentWrapper .contentBox .imgBox .pagination{
    position: absolute;
    right: 12px;
    top: 12px;
    width: auto;
    height: 24px;
    padding:0px 8px;
    background: rgba(14, 14, 16, 0.65);
    color: #fff;
    font-size: 1.2em;
    font-weight: 500;
    border-radius: 14px;
    z-index: 10;
    display: none;
}

#pageReviewDetail .contentWrapper .contentBox .imgBox .enlargementBtn{
    position: absolute;
    right: 12px;
    bottom: 36px;
    width: 28px;
    height: 28px;
    background: rgba(14, 14, 16, 0.85);
    border-radius: 50%;
    z-index: 10;
    display: none;
}

#pageReviewDetail .contentWrapper .contentBox .imgBox .enlargementBtn.custom{
    bottom: 12px;
}

#pageReviewDetail .contentWrapper .contentBox .imgBox .enlargementBtn img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width:16px;
    height: 16px;    
}

#pageReviewDetail .contentWrapper .contentBox .imgBox .item{
    padding-bottom: 100%;        
    cursor: pointer;
}

#pageReviewDetail .contentWrapper .contentBox .imgBox .item::after{
    content: '';
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border: 1px rgba(50, 52, 60, 0.1) solid;
    border-radius: 5px;
    position: absolute;
    left: 0px;
    top: 0px;
}

#pageReviewDetail .contentWrapper .contentBox .imgBox .item img{
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height:100%;
    object-fit: cover;
    border-radius: 5px;
}

#pageReviewDetail .contentWrapper .contentBox .textBox{
    font-size: 1.4em;
    margin-bottom: 16px;
    line-height: 1.5;
    word-break: keep-all;
}

#pageReviewDetail .contentWrapper .contentBox .textBox a{
    text-decoration: underline;
}

#pageReviewDetail .contentWrapper .contentBox .btnBox a{
    margin-left: 12px;
}

#pageReviewDetail .contentWrapper .contentBox .btnBox .shareBtn{
    width: 20px;
    height: 20px;
}

#pageReviewDetail .contentWrapper .contentBox .btnBox .mobileShareBtn{
    display: none;
}

#pageReviewDetail .contentWrapper .contentBox .btnBox em{
    font-size: 1.2em;
    font-weight: 500;
    color: #B6B8BE;
}

#pageReviewDetail .contentWrapper .contentBox .btnBox em img{
    margin-right: 2px;
}

#pageReviewDetail .anotherWrapper{
    margin-top: 40px;
    padding-top: 40px;
    border-top: 6px #E6E8EC solid;
}

#pageReviewDetail .anotherWrapper .titleBox{
    margin-bottom: 16px;
}

#pageReviewDetail .anotherWrapper .titleBox h3{
    font-size: 1.6em;
    font-weight: 600;
}

#pageReviewDetail .anotherWrapper .titleBox a{
    font-size: 1.5em;
    font-weight: 600;
    color: #505258;
}

#pageReviewDetail .anotherWrapper .titleBox a img{
    margin-left: 4px;
}

#pageReviewDetail .anotherWrapper .itemBox{
    margin:0px -6px;
}

#pageReviewDetail .anotherWrapper .item{
    padding:0px 6px;
}

#pageReviewDetail .anotherWrapper .item .inner{
    cursor: pointer;
}

#pageReviewDetail .anotherWrapper .item .imgBox{
    width: 100%;
    padding-bottom: 75%;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 16px;
}

#pageReviewDetail .anotherWrapper .item .imgBox::after{
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
    z-index: 0;
}

#pageReviewDetail .anotherWrapper .item .imgBox .thumbnail{
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#pageReviewDetail .anotherWrapper .item .imgBox .textBox{
    position: absolute;
    width: 100%;
    bottom: 10px;
    left: 0px;
    padding:0px 12px;
    z-index: 1;
    color: #fff;
}

#pageReviewDetail .anotherWrapper .item .imgBox .textBox h4{
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 5px;
}

#pageReviewDetail .anotherWrapper .item .imgBox .textBox em{
    font-size: 1.2em;
    font-weight: 600;
    margin: 0px 2px;
}

#pageReviewDetail .anotherWrapper .item .imgBox .textBox span{
    font-size: 1.2em;
    font-weight: 500;
}

#pageReviewDetail .anotherWrapper .item .imgBox .bookmark{
    position: absolute;
    right: 12px;
    top: 12px;
    width: 28px;
    height: 28px;
    z-index: 1;
}

#pageReviewDetail .anotherWrapper .item .starBox em{
    font-size: 1.2em;
    font-weight: 500;
    color: #B6B8BE;
}

#pageReviewDetail .anotherWrapper .item p{
    margin-top: 8px;
    font-size: 1.4em;
}

@media screen and (max-width: 910px){
    #pageReviewDetail{
        padding: 69px 0px 96px;
    }

    #pageReviewDetail .contentWrapper .imx{
        margin: 0px;
    }

    #pageReviewDetail .contentWrapper .titleBox{
        padding:0px 16px 20px;
        margin-bottom: 20px;
        border-bottom: 0px;
    }

    #pageReviewDetail .contentWrapper .titleBox br{
        display: none;
    }

    #pageReviewDetail .contentWrapper .titleBox .nameBox{
        font-size: 1.8em;
        display: block;
    }

    #pageReviewDetail .contentWrapper .titleBox .nameBox img{
        top: 3px;
    }

    #pageReviewDetail .contentWrapper .titleBox::after{
        content: '';
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 1px;
        background: #E6E8EC;
    }

    #pageReviewDetail .contentWrapper .contentBox .userBox{
        display: block;
        padding:0px 16px;
    }

    #pageReviewDetail .contentWrapper .contentBox .userBox b{
        position: absolute;
        right: 0px;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0px;
    }

    #pageReviewDetail .contentWrapper .contentBox .imgBox{
        border-radius: 0px;
        margin-bottom: 12px;
    }

    #pageReviewDetail .contentWrapper .contentBox .imgBox .item{
        border-radius: 0px;
    }

    #pageReviewDetail .contentWrapper .contentBox .imgBox .item::after{
        display: none;
    }

    #pageReviewDetail .contentWrapper .contentBox .imgBox .item img{
        border-radius: 0px;
    }

    #pageReviewDetail .contentWrapper .contentBox .imgBox .pagination{
        display: flex;
    }

    #pageReviewDetail .contentWrapper .contentBox .imgBox .enlargementBtn{
        display: block;
    }

    #pageReviewDetail .contentWrapper .contentBox .btnBox .mobileShareBtn{
        display: block;
    }

    #pageReviewDetail .contentWrapper .contentBox .btnBox .pcShareBtn{
        display: none;
    }

    #pageReviewDetail .contentWrapper .owl-theme .owl-nav.disabled+.owl-dots{
        margin-top: 12px;
        pointer-events: none;
    }

    #pageReviewDetail .contentWrapper .owl-theme .owl-dots .owl-dot span{
        width: 6px;
        height: 6px;
        margin:0px 3px;
        background: #E6E8EC;
    }

    #pageReviewDetail .contentWrapper .owl-theme .owl-dots .owl-dot.active span {
        background: #B6B8BE;
    }
    
    .owl-theme .owl-dots .owl-dot:hover span{
        background: #E6E8EC;
    }

    #pageReviewDetail .contentWrapper .contentBox .starBox,
    #pageReviewDetail .contentWrapper .contentBox .textBox,
    #pageReviewDetail .contentWrapper .contentBox .btnBox{
        padding:0px 16px;
    }

    #pageReviewDetail .contentWrapper .contentBox .starBox .optionBox{
        display: none;
    }

    #pageReviewDetail .contentWrapper .contentBox .starBox .leftBox{
        width: 100%;
        justify-content: space-between;
    }

    #pageReviewDetail .anotherWrapper{
        margin-top: 20px;
        padding-top: 20px;
    }

    #pageReviewDetail .anotherWrapper .titleBox a{
        font-size: 1.4em;
    }

    #pageReviewDetail .anotherWrapper .titleBox a img{
        width: 14px;
        height: 14px;
    }

    #pageReviewDetail .anotherWrapper .itemBox{
        margin:0px -6px -20px;
    }

    #pageReviewDetail .anotherWrapper .item{
        width: 50%;
        margin-bottom: 20px;
    }

    #pageReviewDetail .anotherWrapper .item .imgBox{
        margin-bottom: 12px;
        padding-bottom: 100%;
    }

    #pageReviewDetail .anotherWrapper .item .starBox img{
        width: 14px;
        height: 14px;
    }

    #pageReviewDetail .anotherWrapper .item .imgBox .textBox{
        bottom: 12px;
    }

    #pageReviewDetail .anotherWrapper .item .imgBox .textBox h4{
        font-size: 1.2em;
        margin-bottom: 4px;
    }
}
/* review detail css end */

/* review home css start */
#pageReview .categoryWrapper{
    position: fixed;
    width: 100%;
    left: 0px;
    top: 64px;
    z-index: 9997;
    background: #fff;
}

#pageReview .categoryWrapper::after{
    content: '';
    position: absolute;
    z-index: 1;
    top:55px;
    left: 0px;
    width: 100%;
    height: 1px;
    background: #E6E8EC;
}

#pageReview .categoryWrapper::before{
    content: '';
    display: none;
    position: absolute;
    z-index: 1;
    bottom: -1px;
    left: 0px;
    width: 100%;
    height: 1px;
    background: #E6E8EC;    
}

#pageReview .categoryWrapper.active::before{
    display: block;
}

#pageReview .categoryWrapper .reviewCategory a{
    flex:0 0 auto;
    padding:0px 12px;
    height: 56px;
    margin-right: 20px;
    color: #7C8088;
    font-size: 1.5em;
    font-weight: 600;
}

#pageReview .categoryWrapper .reviewCategory a:last-child{
    margin-right: 0px;
}

/* 선택된 메뉴를 또 누를수 있게 할것인지? 잘못 눌리면 다시 초기화될거 같아서 고민 */
#pageReview .categoryWrapper .reviewCategory a.active{
    color: #0E0E10;
    font-weight: 600;
    pointer-events: none;
}

#pageReview .categoryWrapper .reviewCategory .statusBar{
    position: absolute;
    z-index: 2;
    bottom: 0px;
    left: 0px;
    height: 2px;
    background: #0E0E10;
    border-radius: 99px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

#pageReview .categoryWrapper .reviewSubCategory{
    display: none;
    padding:14px 0px;
}

#pageReview .categoryWrapper .reviewSubCategory a{
    flex: 0 0 auto;
    padding: 0px 12px;
    border: 1px rgba(50, 52, 60, 0.15) solid;
    height: 28px;
    margin-right: 8px;
    border-radius: 14px;
    color: #32343C;
    font-size: 1.2em;
    font-weight: 600;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

#pageReview .categoryWrapper .reviewSubCategory a.active{
    border: 1px #32343C solid;
    background: #32343C;
    color: #fff;
    pointer-events: none;
}

#pageReview .categoryWrapper .reviewSubCategory a:last-child{
    margin-right: 0px;
}

#pageReview .contentWrapper{
    padding: 88px 0px 70px;
}

#pageReview .contentWrapper.active{
    padding:134px 0px 70px;
}

#pageReview .contentWrapper .itemBox{
    margin:0px -10px;
}

#pageReview .contentWrapper .itemBox .itemSizer{
    width: 25%;
}

#pageReview .contentWrapper .itemBox .item{
    width: 25%;
    margin-bottom: 32px;
    padding:0px 10px;
}

#pageReview .contentWrapper .itemBox .item .inner{    
    cursor: pointer;
}

#pageReview .contentWrapper .itemBox .item .inner .imgBox{
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    margin-bottom: 12px;
}

#pageReview .contentWrapper .itemBox .item .inner .imgBox::after{
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
    z-index: 0;
}

#pageReview .contentWrapper .itemBox .item .inner .imgBox > img{
    width: 100%;
}

#pageReview .contentWrapper .itemBox .item .inner .imgBox .textBox{
    width: 100%;
    position: absolute;
    bottom: 12px;
    left: 0px;
    padding:0px 12px;
    z-index: 1;
}

#pageReview .contentWrapper .itemBox .item .inner .imgBox .textBox h4{
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

#pageReview .contentWrapper .itemBox .item .inner .imgBox .textBox em{
    font-size: 1.2em;
    font-weight: 500;
    margin-left: 2px;
    padding-top: 2px;
    color: #fff;
}

#pageReview .contentWrapper .itemBox .item .inner .imgBox .bookmark{
    position: absolute;
    right:12px;
    top:12px;
    z-index: 10;
}

#pageReview .contentWrapper .itemBox .item .inner .userInfo{
    margin-bottom: 6px;
}

#pageReview .contentWrapper .itemBox .item .inner .userInfo .userProfileBox{
    width: 20px;
    height: 20px;
    margin-right: 6px;
}

#pageReview .contentWrapper .itemBox .item .inner .userInfo .userName{
    font-size: 1.2em;
    font-weight: 600;
}

#pageReview .contentWrapper .itemBox .item .inner .userInfo .userName.custom{
    color: #7C8088;
}

#pageReview .contentWrapper .itemBox .item .inner .userInfo .starBox{
    font-size: 1.2em;
    font-weight: 500;
    color: #505258;
    background: #FFF5D9;
    width: 34px;
    height: 20px;
    border-radius: 99px;
}

#pageReview .contentWrapper .itemBox .item .inner .userInfo .starBox img{
    width: 12px;
    margin-right: 2px;
}

#pageReview .contentWrapper .itemBox .item .inner .contentBox{
    font-size: 1.4em;
}

#pageReview .contentWrapper .itemBox .noneData{
    text-align: center;
    padding:120px 0px 130px;
    width: 100%;
    margin-bottom: 0px;
}

#pageReview .contentWrapper .itemBox .noneData img{
    display: inline-block;
    margin-bottom: 16px;
}

#pageReview .contentWrapper .itemBox .noneData p{
    font-size: 1.5em;
    font-weight: 500;
    color: #7C8088;
    margin-bottom: 16px;
}

#pageReview .contentWrapper .itemBox .noneData a{
    display: inline-block;
    font-size: 1.4em;
    font-weight: 600;
    padding: 0px 12px;
    height: 32px;
    line-height: 32px;
    margin: auto;
}

@media screen and (max-width: 910px){
    #pageReview .categoryWrapper::after{
        top: 39px;
    }

    #pageReview .categoryWrapper .imx{
        margin:0px;
    }

    #pageReview .categoryWrapper .reviewCategory a{
        height: 40px;
    }

    #pageReview .categoryWrapper .reviewCategory{
        padding: 0px 16px;
    }

    #pageReview .categoryWrapper .reviewSubCategory{
        padding:10px 16px 10px 0px;
    }

    #pageReview .categoryWrapper .reviewSubCategory a:first-child{
        margin-left: 16px;
    }

    #pageReview .contentWrapper{
        padding:60px 0px 16px;
    }

    #pageReview .contentWrapper.active{
        padding:102px 0px 16px;
    }

    #pageReview .contentWrapper .itemBox{
        margin:0px -6px;
    }

    #pageReview .contentWrapper .itemBox .itemSizer{
        width: 50%;
    }

    #pageReview .contentWrapper .itemBox .item{
        width: 50%;
        margin-bottom: 24px;
        padding:0px 6px;
    }

    #pageReview .contentWrapper .itemBox .noneData{
        width: 100%;
        padding:120px 0px 130px;
        margin-bottom: 0px;
    }
}
/* review home css end */

/* review list css start */
#pageReviewList .contentWrapper{
    padding-top: 56px;
}

#pageReviewList .contentWrapper .inner{
    max-width: 590px;
    width: 100%;
    margin: auto;
}

#pageReviewList .contentWrapper .reviewInfoBox .category{
    margin-bottom: 12px;    
}

#pageReviewList .contentWrapper .reviewInfoBox .category div div{
    font-size: 1.4em;
    font-weight: 500;
    color: #505258;
}

#pageReviewList .contentWrapper .reviewInfoBox .category img{
    margin:0px 2px;
}

#pageReviewList .contentWrapper .reviewInfoBox .category a{
    font-size: 1.2em;
    font-weight: 600;
    color: #7C8088;
}

#pageReviewList .contentWrapper .reviewInfoBox h3{
    font-size: 2em;
    font-weight: 600;
    line-height: 1.3;
    padding-right: 24px;
    margin-bottom: 12px;
}

#pageReviewList .contentWrapper .reviewInfoBox h3 a{
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0px;
    top: 2px;
}

#pageReviewList .contentWrapper .reviewInfoBox h3 a.mobileShareBtn{
    display: none;
}

#pageReviewList .contentWrapper .reviewInfoBox .copyBtn{
    font-size: 1.2em;
    color: #505258;
}

#pageReviewList .contentWrapper .reviewInfoBox .copyBtn em{
    font-weight: 600;
    color: #7E49FF;
    margin-left: 6px;
}

#pageReviewList .contentWrapper .reviewInfoBox .totalStarBox{
    background: #F1F2F3;
    border-radius: 8px;
    padding:12px 16px;
    margin: 20px 0px;
}

#pageReviewList .contentWrapper .reviewInfoBox .totalStarBox h4{
    font-size: 2em;
    font-weight: 600;
    margin-right: 8px;
}

#pageReviewList .contentWrapper .reviewInfoBox .totalStarBox img{
    width: 20px;
}

#pageReviewList .contentWrapper .reviewInfoBox .totalStarBox p{
    font-size: 1.2em;
    font-weight: 500;
    color: #7C8088;
}

#pageReviewList .contentWrapper .addThisReview{
    padding:20px 0px;
    border-top: 1px #E6E8EC solid;
    border-bottom: 1px #E6E8EC solid;
    text-align: center;
    margin-bottom: 20px;
}

#pageReviewList .contentWrapper .addThisReview h4{
    font-size: 1.5em;
    font-weight: 500;
    margin-bottom: 10px;
}

#pageReviewList .contentWrapper .addThisReview img{
    width: 40px;
}

#pageReviewList .contentWrapper .sortingBox{
    margin-bottom: 8px;
}

#pageReviewList .contentWrapper .sortingBox h4{
    font-size: 1.4em;
    font-weight: 600;
    color: #505258;
    margin-bottom: 16px;
}

#pageReviewList .contentWrapper .sortingBox label input{
    width: 16px !important;
    height: 16px !important;
    vertical-align: middle;
}

#pageReviewList .contentWrapper .sortingBox label em{
    font-size: 1.2em;
    font-weight: 500;
    color: #32343C;
    vertical-align: middle;
}

#pageReviewList .contentWrapper .itemBox .item{
    cursor: pointer;
    padding-top: 20px;
}

#pageReviewList .contentWrapper .itemBox .item .imgBox{
    margin:12px 0px 0px;
    padding:0px 16px;
    gap: 8px;
}

#pageReviewList .contentWrapper .itemBox .item .imgBox .imgInner{
    width:calc(100% - 80% - 6px);
}

#pageReviewList .contentWrapper .itemBox .item .imgBox .imgInner div{
    width: 100%;
    padding-bottom: 100%;
}

#pageReviewList .contentWrapper .itemBox .item .imgBox .imgInner div span{
    position: absolute;
    left: 0px;
    top: 0px;
    width: calc(100%);
    height: calc(100%);
    border: 1px rgba(50, 52, 60, 0.1) solid;
    border-radius: 5px;
    z-index: 10;
}

#pageReviewList .contentWrapper .itemBox .item .imgBox .imgInner div img{
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    /* image-orientation:from-image; */
}

#pageReviewList .contentWrapper .itemBox .item .infoBox .profileBox{
    margin-bottom: 12px;
    display: inline-block;
    height: 32px;
}

#pageReviewList .contentWrapper .itemBox .item .infoBox .profileBox .userProfileBox{
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 6px;
    vertical-align: middle;
}

#pageReviewList .contentWrapper .itemBox .item .infoBox .profileBox em{
    font-size: 1.5em;
    font-weight: 600;
    vertical-align: middle;
}

#pageReviewList .contentWrapper .itemBox .item .infoBox .profileBox em.custom{
    color:#7C8088;
}

#pageReviewList .contentWrapper .itemBox .item .infoBox .starBox{
    margin-bottom: 12px;
}

#pageReviewList .contentWrapper .itemBox .item .infoBox .starBox img{
    width: 20px;
}

#pageReviewList .contentWrapper .itemBox .item .infoBox .starBox em{
    font-size: 1.2em;
    color: #B6B8BE;
}

#pageReviewList .contentWrapper .itemBox .item .infoBox p{
    line-height: 1.4;
    font-size: 1.4em;
}

#pageReviewList .contentWrapper .itemBox .item .optionBox{
    margin-top: 16px;
    padding-bottom: 20px;
    border-bottom: 1px #E6E8EC solid;
}

#pageReviewList .contentWrapper .itemBox .item:last-child .optionBox{
    padding-bottom: 0px;
    border-bottom: 0px;
    margin-bottom: 90px;
}

#pageReviewList .contentWrapper .itemBox .item .optionBox span{
    font-size: 1.2em;
    font-weight: 500;
    color: #B6B8BE;
}

#pageReviewList .contentWrapper .itemBox .item .optionBox span img{
    margin-right: 2px;
}

#pageReviewList .contentWrapper .itemBox .item .optionBox .likeBox a{
    margin-left: 8px;
}

@media screen and (max-width: 910px){
    #pageReviewList{
        padding-top: 69px;
    }

    #pageReviewList .contentWrapper{
        padding-top: 0px;
    }
    
    #pageReviewList .contentWrapper .inner{
        max-width: 100%;
    }

    #pageReviewList .contentWrapper .reviewInfoBox .category{
        margin-bottom: 8px;
    }

    #pageReviewList .contentWrapper .reviewInfoBox .category a{
        display: none;
    }

    #pageReviewList .contentWrapper .reviewInfoBox h3{
        font-size: 1.8em;
        padding-right: 22px;
    }

    #pageReviewList .contentWrapper .reviewInfoBox h3 a{
        width: 18px;
        height: 18px;
    }

    #pageReviewList .contentWrapper .reviewInfoBox h3 a.pcShareBtn{
        display: none;
    }

    #pageReviewList .contentWrapper .reviewInfoBox h3 a.mobileShareBtn{
        display: block;
    }

    #pageReviewList .contentWrapper .reviewInfoBox .totalStarBox{
        margin:16px 0px 20px;
    }

    #pageReviewList .contentWrapper .imx.active{
        margin:0px;
    }

    #pageReviewList .contentWrapper .contentWrapper .inner{
        max-width: 100%;
        width: 100%;
        margin: auto;
    }

    #pageReviewList .contentWrapper .itemBox .item .imgBox .imgInner{
        flex: 0 0 120px;
        height: 120px;
    }

    #pageReviewList .contentWrapper .itemBox .item .imgBox .imgInner:last-child{
        margin-right: 0px;
    }

    #pageReviewList .contentWrapper .itemBox .item:last-child .optionBox{
        margin-bottom: 104px;
    }
}
/* review list css end */

/* search list css start */
#mobileSearchHeader{
    display: none;
}

#pageSearch .contentWrapper .leftBox{
    position: sticky;
    left: 0px;
    top: 65px;
    position: sticky;
    width: 268px;
    padding:56px 40px 88px 24px;
}

#pageSearch .contentWrapper .leftBox h3{
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 16px;
}

#pageSearch .contentWrapper .leftBox .searchRecordBox .searchRecord .item{
    margin-bottom: 12px;
    height: 36px;
}

#pageSearch .contentWrapper .leftBox .searchRecordBox .searchRecord a{
    display: inline-block;
    height: 36px;
    line-height: 36px;
    padding:0px 30px 0px 14px;
    color: #32343C;
    font-size: 1.4em;
    font-weight: 600;
    border:1px rgba(50, 52, 60, 0.15) solid;
    border-radius:99px;
    overflow: hidden;
}

#pageSearch .contentWrapper .leftBox .searchRecordBox .searchRecord a img{
    position: absolute;
    right: 14px;
    width: 12px;
    height: 12px;
    top: 52%;
    transform: translateY(-50%);
}

#pageSearch .contentWrapper .leftBox .searchRecordBox .searchRecordAllDelete{
    font-size: 1.4em;
    font-weight: 600;
    color: #32343C;
    padding:0px 14px;
    height: 36px;
    line-height: 36px;
    background: #F1F2F3;
    display: inline-block;
    border-radius: 99px;
    margin-bottom: 56px;
}

#pageSearch .contentWrapper .leftBox .searchPopular li:not(:last-child){
    margin-bottom: 22px;
}

#pageSearch .contentWrapper .leftBox .searchPopular a{
    font-size: 1.4em;
    font-weight: 500;
    padding-left: 22px;
    display: inline-block;    
}

#pageSearch .contentWrapper .leftBox .searchPopular a img{
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

#pageSearch .contentWrapper .rightBox{
    width: calc(100% - 268px);
    padding:56px 0px 88px 16px;
    border-left: 1px #E6E8EC solid;
    /* min-height: calc(100vh - 282px); */
    min-height: 787px;
    display: flex;
    justify-content: flex-end;
}

#pageSearch .contentWrapper .rightBox .inner{
    max-width: 558px;
    width: 100%;
}

#pageSearch .contentWrapper .rightBox h2{
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 20px;
    word-break: keep-all;
    line-height: 1.4;
}

#pageSearch .contentWrapper .rightBox h2 span{
    color: #7C8088;
}

#pageSearch .contentWrapper .rightBox .menuBox{
    border-bottom:1px rgba(50, 52, 60, 0.1) solid;
    margin-bottom: 28px;
}

#pageSearch .contentWrapper .rightBox .menuBox a{
    padding:16px 12px;
    font-size: 1.5em;
    font-weight: 600;
    color: #7C8088;
    margin-right: 20px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

#pageSearch .contentWrapper .rightBox .menuBox a:nth-child(5){
    margin-right: 0px;
}

#pageSearch .contentWrapper .rightBox .menuBox a.active{
    color: #0E0E10;
}

#pageSearch .contentWrapper .rightBox .menuBox .activeBar{
    width: 49px;
    height: 2px;
    background: #0E0E10;
    position: absolute;
    left: 0px;
    bottom: -1px;
    border-radius: 99px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

#pageSearch .contentWrapper .rightBox h3{
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
}

#pageSearch .contentWrapper .rightBox .itemMoreBtn{
    position: absolute;
    right: 0px;
    top: 6px;
    color: #505258;
    font-size: 1.2em;
    font-weight: 600;
}

#pageSearch .contentWrapper .rightBox .itemMoreBtn img{
    width: 12px;
    height: 12px;
    margin-left: 4px;
}

#pageSearch .contentWrapper .rightBox .itemMoreBtn .mobileText{
    display: none;
}

#pageSearch .contentWrapper .rightBox .contentBox{
    height: calc(100% - 138px);
}

#pageSearch .contentWrapper .rightBox .contentBox .allBox{
    margin-bottom: 56px;
}

#pageSearch .contentWrapper .rightBox .contentBox .allBox:last-child{
    margin-bottom: 0px;
}

#pageSearch .contentWrapper .rightBox .noneData{
    text-align: center;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

#pageSearch .contentWrapper .rightBox .noneData p{
    width: 100%;
}

#pageSearch .contentWrapper .rightBox .noneData span{
    display: block;
    font-size: 1.5em;
    font-weight: 500;
    color: #7C8088;
    margin-top: 16px;
    line-height: 1.4;
}

#pageSearch .contentWrapper .rightBox .countBox{
    margin-bottom: 20px;
    height: 16px;
}

#pageSearch .contentWrapper .rightBox .countBox span{
    font-size: 1.2em;
    font-weight: 500;
    color: #7C8088;
}

#pageSearch .contentWrapper .rightBox .itemBox .item{
    padding:20px 0px;
    border-bottom: 1px #E6E8EC solid;
    cursor: pointer;
}

#pageSearch .contentWrapper .rightBox .reviewListBox .itemBox .item{
    padding:16px 0px;
}

#pageSearch .contentWrapper .rightBox .userListBox .itemBox .item{
    padding:0px;
    margin-bottom: 16px;
    border-bottom: 0px;
    cursor: unset;
}

#pageSearch .contentWrapper .rightBox .userListBox .itemBox .item:last-child{
    margin-bottom: 0px;
}

#pageSearch .contentWrapper .rightBox .itemBox .item:first-child{
    padding-top: 0px;
}

#pageSearch .contentWrapper .rightBox .itemBox .item:last-child{
    border-bottom: 0px;
    padding-bottom: 0px;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .categoryBox{
    font-size: 1.2em;
    font-weight: 500;
    color: #7C8088;
    margin-bottom: 12px;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .categoryBox img{
    margin:0px 2px;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .dateBox{
    color: #B6B8BE;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .titleBox{
    flex-wrap: nowrap;
    margin-bottom: 12px;
}

#pageSearch .contentWrapper .rightBox .communityBox .itemBox .item .titleBox{
    margin-bottom: 6px;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .titleBox h4{
    font-size: 1.6em;
    font-weight: 600;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .titleBox span{
    margin-left: 6px;
    padding-left: 6px;
    flex-wrap: nowrap;
    width: auto;
    flex: none;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .titleBox span b{
    font-size: 1.2em;
    font-weight: 600;
    color: #7C8088;
    margin:0px 2px;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .titleBox span em{
    font-size: 1.2em;
    font-weight: 500;
    color: #B6B8BE;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .titleBox span::before{
    content: '';
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #B6B8BE;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .infoBox{
    margin-bottom: 12px;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .infoBox.active .imgBox{
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 86px;
    height: 86px;    
}

#pageSearch .contentWrapper .rightBox .itemBox .item .infoBox.active .imgBox .mainImg{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .infoBox.active .imgBox span{
    position: absolute;
    left: 0px;
    top: 0px;
    width: calc(100%);
    height: calc(100%);
    border: 1px rgba(50, 52, 60, 0.1) solid;
    border-radius: 5px;
    z-index: 10;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .profileBox{
    margin-bottom: 6px;
}

#pageSearch .contentWrapper .rightBox .communityBox .itemBox .item .profileBox{
    margin-bottom: 0px;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .profileBox .userProfileBox{
    width: 20px;
    height: 20px;
    margin-right: 6px;
}

#pageSearch .contentWrapper .rightBox .userListBox .itemBox .item .profileBox{
    height: 40px;
    margin-bottom: 0px;
    line-height: 40px;
    padding-left: 52px;
}

#pageSearch .contentWrapper .rightBox .userListBox .itemBox .item .profileBox .userProfileBox{
    width: 40px;
    height: 40px;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

#pageSearch .contentWrapper .rightBox .itemBox .item .profileBox span{
    font-size: 1.2em;
    font-weight: 600;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .profileBox span.custom{
    color: #7C8088;
}

#pageSearch .contentWrapper .rightBox .userListBox .itemBox .item .profileBox span{
    font-size: 1.5em;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .starBox{
    margin-bottom: 6px;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .starBox img{
    width: 16px;
    height: 16px;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .commentBox{
    font-size: 1.4em;
    line-height: 1.4;
    max-height: 39px;
}

#pageSearch .contentWrapper .rightBox .communityBox .itemBox .item .commentBox{
    max-height: 59px;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .iconBox em{
    font-size: 1.2em;
    font-weight: 500;
    color: #B6B8BE;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .iconBox em img{
    margin-right: 2px;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .iconBox em + em{
    margin-left: 6px;
    padding-left: 6px;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .iconBox em + em::before{
    content: '';
    display: block;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: #B6B8BE;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .likeBox a{
    margin-left: 8px;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .infoBox.active{
    padding-right: 102px;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .infoBox.active .commentBox{
    height: 39px;
}

#pageSearch .contentWrapper .rightBox .communityBox .itemBox .item .infoBox.active .commentBox{
    height: 59px;
}

#pageSearch .contentWrapper .rightBox .itemBox .item .listTitle{
    font-size: 1.6em;
    font-weight: 600;
    color: #32343C;
}

@media screen and (max-width: 910px){
    #mobileSearchHeader{
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        display: block;
        z-index: 9997;
        background: #fff;
    }

    #mobileSearchHeader .inner{
        width: 100%;
        height: 64px;
        padding-right: 40px;
    }

    #mobileSearchHeader .inner .inputBox{
        width: 100%;
        height: 40px;
        border: 1px #DADCE2 solid;
        background: #F1F2F3;
        border-radius: 8px;
        cursor: pointer;
    }

    #mobileSearchHeader .inner .inputBox p{
        padding: 0px 30px 0px 42px;
        font-size: 1.5em;
    }

    #mobileSearchHeader .inner .inputBox .searchImg{
        z-index: 2;
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
    }

    #mobileSearchHeader .inner #mobileSearchCancel{
        font-size: 1.4em;
        font-weight: 600;
        color: #505258;
        position: absolute;
        right: 0px;
        top: 50%;
        transform: translateY(-50%);
        width: 26px;
    }

    #pageSearch .contentWrapper .leftBox{
        display: none;
    }

    #pageSearch .contentWrapper .rightBox{
        width: 100%;
        padding:68px 0px 40px;
        border-left: 0px;
        min-height: auto;
        display: block;
    }

    #pageSearch .contentWrapper .rightBox h2{
        display: none;
    }

    #pageSearch .contentWrapper .rightBox .menuBox{
        background: #fff;
        position: fixed;
        z-index: 9997;
        top: 64px;
        left: 0px;
        width: 100%;
        padding:0px 16px;
        margin-bottom: 0px;
    }

    #pageSearch .contentWrapper .rightBox .itemMoreBtn{
        position: relative;
        right: auto;
        top: auto;
        margin-top: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5em;
        font-weight: 600;
        color: #32343C;
        height: 40px;
        border-radius: 8px;
        border: 1px #DADCE2 solid;
    }

    #pageSearch .contentWrapper .rightBox .itemMoreBtn .pcText,
    #pageSearch .contentWrapper .rightBox .itemMoreBtn img{
        display: none;
    }

    #pageSearch .contentWrapper .rightBox .itemMoreBtn .mobileText{
        display: block;
    }

    #pageSearch .contentWrapper .rightBox .menuBox a{
        padding: 11px 8px;
    }

    #pageSearch .contentWrapper .rightBox .noneData{
        position: relative;
        top: auto;
        transform: none;
        height: calc(100vh - 172px);
    }

    #pageSearch .contentWrapper .rightBox .noneData p{
        position: absolute;
        top: 46%;
        left: 0px;
        transform: translateY(-50%);
    }

    #pageSearch .contentWrapper .rightBox .countBox{
        margin-top: -8px;
        margin-bottom: 16px;
    }

    #pageSearch .contentWrapper .rightBox .inner{
        max-width: 100%;
    }

    #pageSearch .contentWrapper .rightBox .contentBox{
        height: auto;
    }

    #pageSearch .contentWrapper .rightBox .contentBox .allBox:not(:last-child){
        padding-bottom: 36px;
        margin-bottom: 24px;
    }

    #pageSearch .contentWrapper .rightBox .contentBox .allBox:not(:last-child)::after{
        content: '';
        width: calc(100% + 32px);
        height: 1px;
        position: absolute;
        left: 50%;
        bottom: 0px;
        transform: translateX(-50%);
        background: #E6E8EC;
    }
}
/* search list css end */

/* terms css start */
.pageTerms .contentWrapper{
    padding:80px 0px;
    word-break: keep-all;
}

.pageTerms .contentWrapper .row{
    max-width: 590px;
}

.pageTerms .contentWrapper h3{
    font-size: 2.4em;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}

.pageTerms .contentWrapper p{
    font-size: 1.5em;
    margin-bottom: 40px;
    line-height: 1.5;
}

.pageTerms .contentWrapper .inner{
    margin-bottom: 40px;
}

.pageTerms .contentWrapper .inner:last-child,
.pageTerms .contentWrapper .inner:last-child em{
    margin-bottom: 0px;
}

.pageTerms .contentWrapper h4{
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 16px;
}

.pageTerms .contentWrapper em{
    display: block;
    font-size: 1.5em;
    margin-bottom: 16px;
    line-height: 1.5;
}

.pageTerms .contentWrapper em.custom{
    margin-bottom: 0px;
}

.pageTerms .contentWrapper ul li{
    font-size: 1.5em;
    line-height: 1.5;
    padding-left: 24px;
}

.pageTerms .contentWrapper ul li::before{
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #0E0E10;
    position: absolute;
    top: 9px;
    left: 9px;
}

.pageTerms .contentWrapper ul.custom li::before{
    display: none;
}

.pageTerms .contentWrapper ul.custom li span{
    position: absolute;
    left: 5px;
    top: 0px;
}

@media screen and (max-width: 910px){
    .pageTerms{
        padding-top: 49px;
    }
    .pageTerms .contentWrapper{
        padding:40px 0px;
    }

    .pageTerms .contentWrapper h3{
        text-align: left;
    }
}

#pageGuide .bannerWrapper{
    padding:56px 0px;
    border-bottom: 1px #E6E8EC solid;
    text-align: center;
}

#pageGuide .bannerWrapper h3{
    font-size: 3.2em;
    font-weight: bold;
    margin-bottom: 12px;
}

#pageGuide .bannerWrapper h3 span{
    color: #7E49FF;
}

#pageGuide .bannerWrapper p{
    font-size: 1.6em;
    color: #32343C;
    margin-bottom: 40px;
    line-height: 1.5;
}

#pageGuide .bannerWrapper p br.custom{
    display: none;
}

#pageGuide .contentWrapper{
    padding:36px 0px 104px;
}

#pageGuide .contentWrapper .row{
    max-width: 590px;
}

#pageGuide .contentWrapper .menuBox{
    margin-bottom: 56px;
    padding:0px 16px;
    justify-content: center;
}

#pageGuide .contentWrapper .menuBox a{
    padding:0px 14px;
    background: #F1F2F3;
    margin-right: 8px;
    height: 36px;
    flex: 0 0 auto;
    border-radius: 99px;
    font-size: 1.4em;
    font-weight: 600;
    color: #32343C;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

#pageGuide .contentWrapper .menuBox a:last-child{
    margin-right: 0px;
}

#pageGuide .contentWrapper .menuBox a:hover{
    background: #E6E8EC;
}

#pageGuide .contentWrapper .contentBox{
    padding: 0px 16px;
}

#pageGuide .contentWrapper .contentBox h3{
    font-size: 2.4em;
    font-weight: bold;
    margin-bottom: 24px;
}

#pageGuide .contentWrapper .contentBox .itemBox{
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px #E6E8EC solid;
}

#pageGuide .contentWrapper .contentBox .itemBox:last-child{
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: 0px;
}

#pageGuide .contentWrapper .contentBox .item{
    margin-bottom: 40px;
}

#pageGuide .contentWrapper .contentBox .item:last-child{
    margin-bottom: 0px;
}

#pageGuide .contentWrapper .contentBox .item .videoBox{
    display: flex;
    width: 279px;
    height: 558px;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

#pageGuide .contentWrapper .contentBox .item .videoBox video{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border:1px rgba(50, 52, 60, 0.15) solid;
}

#pageGuide .contentWrapper .contentBox .item .textBox{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    width: 240px;
}

#pageGuide .contentWrapper .contentBox .item .textBox span{
    display: inline-flex;
    font-size: 1.2em;
    font-weight: 500;
    color: #7E49FF;
    border-radius: 8px;
    padding: 0px 6px;
    height: 24px;
    background: #ECE8FF;
    margin-bottom: 16px;
}

#pageGuide .contentWrapper .contentBox .item .textBox h4{
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 16px;
}

#pageGuide .contentWrapper .contentBox .item .textBox p{
    font-size: 1.5em;
    color: #32343C;
    word-break: keep-all;
    line-height: 1.5;
}

#pageGuide .contentWrapper .contentBox .item .textBox p em{
    color: #7E49FF;
}

@media screen and (max-width: 910px){
    #pageGuide{
        padding-top: 49px;
    }

    #pageGuide .bannerWrapper{
        padding:40px 0px;
    }

    #pageGuide .bannerWrapper h3{
        font-size: 2.4em;
        margin-bottom: 10px;
    }

    #pageGuide .bannerWrapper p{
        font-size: 1.5em;
        word-break: keep-all;
        margin-bottom: 24px;
    }

    #pageGuide .bannerWrapper p br.custom{
        display: block;
    }

    #pageGuide .bannerWrapper img{
        width: 160px;
    }

    #pageGuide .contentWrapper{
        padding-bottom: 120px;
    }

    #pageGuide .contentWrapper .row{
        max-width: 100%;
    }

    #pageGuide .contentWrapper .menuBox{
        justify-content: flex-start;
    }

    /* #pageGuide .contentWrapper .menuBox a:hover{
        background: #F1F2F3;
        color: #32343C;
    } */

    #pageGuide .contentWrapper .contentBox h3{
        font-size: 2em;
    }

    #pageGuide .contentWrapper .contentBox .itemBox{
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    #pageGuide .contentWrapper .contentBox .item .videoBox{
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    #pageGuide .contentWrapper .contentBox .item .textBox{
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
    }

    #pageGuide .contentWrapper .contentBox .item .textBox span{
        margin-bottom: 8px;
    }

    #pageGuide .contentWrapper .contentBox .item .textBox h4{
        margin-bottom: 8px;
        font-size: 1.6em;
    }

    #pageGuide .contentWrapper .contentBox .item .textBox p{
        font-size: 1.4em;
    }
}

#pageNotice .contentWrapper{
    padding: 56px 0px 108px;
}

#pageNotice .contentWrapper h2,
#pageNoticeDetail .contentWrapper h2{
    font-size: 2.4em;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}

#pageNotice .contentWrapper .itemBox{
    margin-bottom: 20px;
}

#pageNotice .contentWrapper .itemBox .item{
    display: block;
    border-bottom: 1px #E6E8EC solid;
    padding:20px 70px 20px 0px;
}

#pageNotice .contentWrapper .itemBox .item h3{
    font-size: 1.6em;
    font-weight: 600;
    line-height: 1.4;
    word-break: keep-all;
}

#pageNotice .contentWrapper .itemBox .item span{
    position: absolute;
    right: 0px;
    top: 23px;
    font-size: 1.2em;
    color: #7C8088;
}

#pageNotice .contentWrapper .itemBox .noneData{
    padding:118px 0px;
    text-align: center;
}

#pageNotice .contentWrapper .itemBox .noneData p{
    font-size: 1.5em;
    font-weight: 500;
    color: #7C8088;
    margin-top: 15px;
    width: 100%;
}

#pageNotice .contentWrapper .pagination a{
    width: 32px;
    height: 32px;
}

#pageNotice .contentWrapper .pagination .menu{
    margin:0px 4px;
    font-size: 1.4em;
    font-weight: 600;
    color: #32343C;
    border-radius: 8px
}

#pageNotice .contentWrapper .pagination .menu.active{
    background: #F1F2F3;
}

#pageNotice .contentWrapper .pagination .navBtn.none{
    opacity: 0.2;
    pointer-events: none;
}

#pageNotice .contentWrapper .pagination .prevBtn{
    transform: rotate(180deg);
    margin-right: 4px;
}

#pageNotice .contentWrapper .pagination .nextBtn{
    margin-left: 4px;
}

@media screen and (max-width: 910px){
    #pageNotice{
        padding-top: 49px;
    }

    #pageNotice .contentWrapper{
        padding:0px 0px 116px;
    }

    #pageNotice .contentWrapper .imx{
        margin: 0px;
    }

    #pageNotice .contentWrapper h2,
    #pageNoticeDetail .contentWrapper h2{
        display: none;
    }

    #pageNotice .contentWrapper .itemBox .item{
        padding:20px 16px;
    }

    #pageNotice .contentWrapper .itemBox .item h3{
        margin-bottom: 8px;
    }

    #pageNotice .contentWrapper .itemBox .item span{
        position: relative;
        right: auto;
        top: auto;
    }

    #pageNotice .contentWrapper .itemBox .noneData{
        padding:213px 0px;
    }
}

#pageNoticeDetail .contentWrapper{
    padding: 56px 0px 100px;
}

#pageNoticeDetail .contentWrapper .titleBox{
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px #E6E8EC solid;
}

#pageNoticeDetail .contentWrapper .titleBox h3{
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

#pageNoticeDetail .contentWrapper .titleBox em{
    display: block;
    color: #7C8088;
    font-size: 1.2em;
}

#pageNoticeDetail .contentWrapper p{
    font-size: 1.4em;
    line-height: 1.5;
    margin-bottom: 20px;
}

#pageNoticeDetail .contentWrapper img{
    display: flex;
    margin-bottom: 20px;
}

#pageNoticeDetail .contentWrapper a{
    font-size: 1.4em;
    font-weight: 600;
    width: 73px;
    height: 32px;
}

@media screen and (max-width: 910px){
    #pageNoticeDetail{
        padding-top: 49px;
    }

    #pageNoticeDetail .contentWrapper{
        padding:20px 0px 116px;
    }   
}