@charset "utf-8";

/* layout.css */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');


/* common */
*, *::before, *::after {
    box-sizing: border-box;
}
html body{overflow-y:overlay;}
html *::-webkit-scrollbar{
	border-radius:0;
	width:8px;
}
html *::-webkit-scrollbar-track{
	border-radius:0;
	background-color:rgba(0, 0, 0, 0);
}
html *::-webkit-scrollbar-thumb{
	border-radius:8px;
	background-color:rgba(22, 24, 35, .06);
}
body{font-size: 14px; font-family: 'Lato', sans-serif; color: #333; background-color: rgba(255, 255, 255, 1);}
body a{
	text-decoration: none; 
	color: #333;
    transition: color 250ms;
    cursor: pointer;
}
body a:hover{text-decoration: none; color: #333;}

#wrap{
	min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
} 

#container{
	margin-top: 75px;
	width: 100%;
	max-width: 1440px;
	margin:75px auto 0;
}
.container_inner{
	width: 100%;
	padding:0 50px;
	display: flex;
	/* justify-content: space-between; */
	align-self: center;
}

/* side 바 */
.sideNavContainer{
	position: relative;
}
.scrollContainer{
	width: 212px;
}
.scrollContainer::-webkit-scrollbar{
	width:0;
	height:0;
}
.scrollContainer:hover .scrollBar{
	opacity:1;
}
.navWrapper{
    padding-top: 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 100%;
}
.scrollBar{
	position: absolute;
    padding: 0 4px;
    top: 0;
    transition: opacity .5s;
    opacity: 0;
    right: 0;
    transform-origin: right top;
	height: 233.412px;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, -1) scale(2.125) translateZ(-1.125px) translateZ(-2px);
}
.scrollBarThumb{
	width: 6px;
    height: 100%;
    border-radius: 3px;
    background: rgba(22, 24, 35, .06);
}
.mainNavContainer{
	margin-bottom: 36px;
    padding: 0;
	display: flex;
	flex-direction: column;
	column-gap: 6px;
}
.mainNavContainer .navLink {
	position: relative;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	box-sizing: border-box;
	transition: background ease-in-out 200ms;
}


.mainNavContainer .navLink .icon{
	width: 24px;
	height: 24px;
	background: url(../image/icon/icon_home.png) no-repeat center center;
	margin-right: 18px;
}

.mainNavContainer .navLink .icon.home{
	background-image: url(../image/icon/icon_home.png);
}
.mainNavContainer .navLink .icon.follow{
	background-image: url(../image/icon/icon_following.png);
}
.mainNavContainer .navLink .icon.challenge{
	background-image: url(../image/icon/icon_challenge.png);
}
.mainNavContainer .navLink .icon.history{
	background-image: url(../image/icon/icon_history.png);
}
.mainNavContainer .navLink .icon.video{
	background-image: url(../image/icon/icon_myVideo.png);
}

.mainNavContainer .navLink.on .icon.home{
	background-image: url(../image/icon/icon_home_on.png);
}
.mainNavContainer .navLink.on .icon.follow{
	background-image: url(../image/icon/icon_following_on.png);
}
.mainNavContainer .navLink.on .icon.history{
	background-image: url(../image/icon/icon_history_on.png);
}
.mainNavContainer .navLink.on .icon.video{
	background-image: url(../image/icon/icon_myVideo_on.png);
}

.mainNavContainer .navLink .mainNavText{
	font-size: 16px;
	line-height:16px;
	letter-spacing: -0.02em;
	color: #242424;
	font-style: normal;
	font-weight: 500;
}
.mainNavContainer .navLink.on .mainNavText{
	color: #5539FF;
}


.followingAccounts{
	padding: 24px 0;
	color: #242424;
	font-weight: 700;
	font-size: 18px;
	line-height: 18px;
	letter-spacing: -0.02em;
	position: relative;
}
.followingAccounts::before{
	content: "";
	position: absolute;
	left: 5px;
	right: 5px;
	top: 0;
	height: 1px;
	background: #DFDFDF;
}
.followingAccounts .following-accounts{
	margin-bottom: 18px;
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 18px;
	letter-spacing: -0.02em;
	color: #242424;
}
.followingAccounts .userLinkContainer{
	padding: 6px 0;
	display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    border-radius: 4px;
    transition: background 200ms ease-in-out 0s;
}
/* .followingAccounts .userLinkContainer .userAvatar{
	width: 24px;
	height: 24px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}
.followingAccounts .userLinkContainer .userAvatar{
	width: 24px;
	height: 24px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}
.followingAccounts .userLinkContainer .spanAvatarContainer{
	width: 24px;
	height: 24px;
	display: inline-block;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    position: relative;
    overflow: hidden;
    color: rgb(255, 255, 255);
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    line-height: 24px;
    border-radius: 50%;
    background-color: rgba(136, 136, 136, 0.5);
    border-color: rgba(22, 24, 35, 0.12);
    border-width: 0.5px;
    cursor: pointer;
}
.followingAccounts .userLinkContainer .ImgAvatar{
	width: 100%;
    height: 100%;
    object-fit: cover;
} */

.userAvatar{
	width: 24px;
	height: 24px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}
.spanAvatarContainer{
	width: 24px;
	height: 24px;
	display: inline-block;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    position: relative;
    overflow: hidden;
    color: rgb(255, 255, 255);
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    line-height: 24px;
    border-radius: 50%;
    background-color: rgba(136, 136, 136, 0.5);
    border-color: rgba(22, 24, 35, 0.12);
    border-width: 0.5px;
    cursor: pointer;
}
.ImgAvatar{
	width: 100%;
    height: 100%;
    object-fit: cover;
}

.followingAccounts .usercontentLink{
	-webkit-box-flex: 1;
    flex-grow: 1;
    height: 24px;
}
.followingAccounts .userTitleWrapper{
	display: flex;
	flex-direction: row;
	align-items: center;
}
.followingAccounts .followingUserTitle{
	color: #000000;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: -0.02em;
	max-width: 220px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.followingAccounts .buttonShowMoreText{
	background: transparent;
	border: none;
	margin-top: 6px;
	cursor: pointer;
}
.followingAccounts .buttonShowMoreText .seeMore{
	font-family: 'Noto Sans KR', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: -0.02em;
	color: #6B53FF;
} 


.trendingContainer{
	padding: 24px 0;
	position: relative;
}
.trendingContainer::before{
	content: "";
	position: absolute;
	left: 5px;
	right: 5px;
	top: 0;
	height: 1px;
	background: #DFDFDF;
}
.trendingContainer .trendingTitle{
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 18px;
	letter-spacing: -0.02em;
	color: #242424;
	padding-bottom: 24px;
}

.trendingContainer .trendingList{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.trendingContainer .navLink{
	display: block;
    width: fit-content;
    max-width: 100%;
}
.trendingContainer .trendingItemContainer{
	display: flex;
	box-sizing: border-box;
	width: fit-content;
	max-width: 100%;
	height: 30px;
	margin-bottom: 12px;
	padding: 4px 12px 5px;
	background: #F0F0F0;
	border-radius: 20px;
	transition: background 200ms ease-in-out 0s;
	margin-right: 8px;
}
.trendingContainer .trendingItemContainer .pText{
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 21px;
	letter-spacing: -0.02em;
	color: #555555;
}

.categoriesContainer{
	padding: 24px 0;
	position: relative;
}
.categoriesContainer::before{
	content: "";
	position: absolute;
	left: 5px;
	right: 5px;
	top: 0;
	height: 1px;
	background: #DFDFDF;
}
.categoriesContainer .categoryTitle{
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 18px;
	letter-spacing: -0.02em;
	color: #242424;
	padding-bottom: 24px;
}

.mainNavContainer .navLink .icon.news{
	background-image: url(../image/icon/icon_news.png);
}
.mainNavContainer .navLink .icon.health{
	background-image: url(../image/icon/icon_health.png);
}
.mainNavContainer .navLink .icon.life{
	background-image: url(../image/icon/icon_life.png);
}

/* 앱 다운로드 */
.bottomContainer{
	right: 24px;
	position: fixed;
	bottom: 0px;
	z-index: 7;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	margin-bottom: 8px;
	transform:translateY(35px);
	transition: all 400ms cubic-bezier(0.65, 0, 0.35, 1) 0s;
}
.bottomContainer.on{
	transform: none;
}
.bottomContainer .promotionContainer{
	margin-bottom: 12px;
	display: flex;
	position: relative;
}
.bottomContainer .btn.buttonGetAppText{
	color: rgba(22, 24, 35, .75);
	font-weight: 700;
	font-size: 14px;
	position: relative;
	right: 0;
	bottom: 0;
	padding: 0 8px;
	min-width: 90px;
	height: 32px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	border-radius: 52px;
	line-height: 30px;
	white-space: nowrap;
	border: 1px solid rgba(22, 24, 35, .12);
	background-color: rgba(255, 255, 255, 1);
	transition: transform 0.3s cubic-bezier(.4,.14,.3,1);
	transform-origin: right bottom;
	transform: none;
}

.bottomContainer .btn.buttonIconContainer{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #ccc;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
} 

.bottomContainer .buttonIconContainer .btnIcon{
	width: 20px;
	height: 20px;
	background: url(../image/icon/icon_more.png) no-repeat center center;
	transform:rotate(270deg)
}

.bottomContainer .btn.buttonIconContainer:hover{
	background:linear-gradient(0deg, rgba(112, 112, 112, 0.6), rgba(204, 204, 204, 0.6)),#cdcdcd;
} 
.bottomContainer .btn.buttonIconContainer:active{
	background:linear-gradient(0deg, rgba(105, 105, 105, 0.8), rgba(105, 105, 105, 0.8)),#787878;
}





/* 모달 */
.divModalContainer{
	position: fixed;
    inset: 0px;
    z-index: 1001;
    overflow: auto;
    outline: 0px;
    transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
    display: none;
    opacity: 0;
}
.divModalContainer.active{
	display: block;
    opacity: 1;
}

.divModalMask{
	background: rgba(0, 0, 0, 0.5);
    position: fixed;
    inset: 0px;
}
.divCenterWrapper{
	/* width: 100vw; */
	width: 100%;
    height: 100%;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}
.divModalContentContainer{
	border-radius: 8px;
    transition: all 300ms cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
    transform: none;
    margin: auto;
    position: relative;
    max-height: 698px;
    height: 90%;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
}
.divModalContent{
	height: 100%;
    display: flex;
    flex-direction: column;
    /* max-width: 582px;
	width: 100%; */
	width: 582px;
    padding-top: 48px;
}
.divPageWrapper{
	flex: 1 1 0%;
    /* overflow: auto; */
	padding: 0 40px;
}
.divPageWrapper .divBack{
	left: 24px;
    position: absolute;
    top: 24px;
    cursor: pointer;
    transform: unset;
}
.divPageWrapper .divBack .backIcon{
	display: block;
	width: 24px;
	height: 24px;
	background:transparent url(../image/icon/icon-back.png) center center no-repeat;
}
.divLoginContainer{
	/* width: 100%;
	max-width: 358px; */
	width: 358px;
    margin: auto;
    padding: unset;
}
.divHomeContainer{
	padding: unset;
}
.login-modal-title{
    font-size: 32px;
	font-weight: 700;
    margin: 16px auto 60px;
    text-align: center;
	line-height: 39px;
}

.loginALink{
	font-weight: 500;
    font-size: 16px;
	line-height: 16px;
}
.channel-item{
	color:#000000;
    font-weight: 500;
    border: 1px solid #A5A5A5;
    font-size: 16px;
    border-radius: 8px;
    padding: 20px 0px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    height: 56px;
    position: relative;
    cursor: pointer;
    margin-bottom: 16px;
    word-break: keep-all;
    white-space: nowrap;
    background: rgb(255, 255, 255);
	column-gap: 8px;
}
.channel-item.facebook{
	background: #3777EA;
	border-color: #3777EA;
	color:#fff;
}
.channel-item.google{
	background: #F2F2F2;
	border-color: #F2F2F2;
	color:#242424;
}
.channel-item.apple{
	background: #000;
	border-color: #000;
	color:#fff;
}
.channel-item .divIconContainer{
	width: 24px;
	height: 24px;
	background:transparent url(../image/icon/icon-user-phone.png) center center no-repeat;
}
.channel-item.user-phone .divIconContainer{
	background-image:url(../image/icon/icon-user-phone.png);
}
.channel-item.facebook .divIconContainer{
	background-image:url(../image/icon/icon-facebook.png);
}
.channel-item.google .divIconContainer{
	background-image:url(../image/icon/icon-google.png);
}
.channel-item.apple .divIconContainer{
	background-image:url(../image/icon/icon-apple.png);
}

.signUpdivContainer{
	color: rgb(22, 24, 35);
    height: 80px;
    border-top: 1px solid rgba(22, 24, 35, 0.12);
    margin: unset;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 19px;
	margin:0 52px;
	/* margin-top: 126px; */
}
.signUpALink{
	color: #7E42FF;
    font-weight: 400;
    font-size: 16px;
	margin-left: 12px;
}
.policy-confirm-tips{
	width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    background: rgb(255, 255, 255);
    padding: 16px 30px;
    margin-bottom: unset;
	color: #A5A5A5;
}
.policy-confirm-tips .PText{
	color: #A5A5A5;
    font-size: 14px;
    line-height: 21px;
    width: 358px;
    text-align: center;
}
.policy-confirm-tips .aLink{
	color: #6F6F6F;
	text-decoration: underline;
}

.modal-close-inner-button{
	position: absolute;
    top: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    z-index: 1;
    right: 24px;
    width: 24px;
    height: 24px;
}

.closeIcon{
	display: block;
	width: 24px;
	height: 24px;
	background:transparent url(../image/icon/icon-close.png) center center no-repeat;
}

.divDescription{
	color: #242424;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-bottom: 8px;
}
.divDescription .aLink{
	color: #7E42FF;
    font-size: 16px;
    display: inline-block;
}
.divDescription .aLink:hover{
	text-decoration: underline;
}

.divHomeContainer .divContainer{
	margin-bottom: 16px;
}
.divPhoneInputContainer{
    transition: all 0.3s ease 0s;
    border-radius: 4px;
    display: flex;
	column-gap: 8px;
}

.divAreaSelectionContainer{
	position: relative;
    cursor: pointer;
	background: #F7F7F7;
	border-radius: 8px;
}
.divAreaLabelContainer{
	display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    position: relative;
    padding: 12px;
    height: 56px;
	column-gap: 12px;
}


.spanCountryContainer{
	display: inline-block;
	width: 42px;
	height: 33px;
	background:transparent url(../image/icon/icon-flag-kr.png) center center no-repeat;
	text-indent: -9999px;
}
.arrowIcon{
	display: inline-block;
	width: 16px;
	height: 16px;
	background:transparent url(../image/icon/icon-arrow-down.png) center center no-repeat;
	transition: color 250ms;
}
.divAreaLabelContainer.active .arrowIcon{
	transform:rotate(180deg)
}


/* 국가선택 */
.divSelectorWrapper{
	opacity: 0;
	display: none;
}
.divSelectorContainer{
	left: 0px;
    max-height: 220px;
    background: rgb(255, 255, 255);
    border: 0.5px solid rgba(22, 24, 35, 0.12);
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 2px 12px;
    border-radius: 4px;
    position: absolute;
    top: 56px; /* 수정 */
    display: flex;
    flex-direction: column;
    z-index: 2;
}
.divNationSearchContainer{
	height: 35px;
    width: 120px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(22, 24, 35, 0.12);
    background: rgb(255, 255, 255);
    margin-top: 4px;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-shrink: 0;
	flex-direction: column;
}
.divSearchIcon{
	margin: 0px 10px;
    color: rgba(22, 24, 35, 0.5);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}
.divSearchIcon .searchIcon{
	display: inline-block;
	width: 20px;
	height: 20px;
	background:url(../image/icon/icon_search.png) no-repeat center center / cover;
}
.login-phone-search{
	outline: none;
    border: none;
    flex: 1 1 0%;
    color: rgb(22, 24, 35);
    background: rgb(255, 255, 255);
    caret-color: #000;
	width: calc(100% - 40px);
	padding-right: 10px;
}

.divListWrapper{
	flex: 1 1 0%;
    overflow: auto;
}
.ulListContainer{
    padding: 0px;
    margin: 0px;
}
.liAreaCodeOptionWrapper{
	margin: 0px;
    padding: 0px;
    display: block;
}
.ulAreaCodeOptionsGroupContainer{
	margin: 0px;
    padding: 0px;
    display: block;
    list-style-type: none;
}
.liListItem{
	color: rgba(22, 24, 35, 0.5);
    display: flex;
    padding: 0px 12px;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    height: 34px;
    line-height: 34px;
}
.liListItem .spanCountryContainer{
	width: 25.45px;
	height: 20px;
	background-size: cover;
}
.liListItem:hover{
	background-color: rgba(22, 24, 35, 0.03);
}
.liListItem[aria-selected="true"]{
	background-color: rgba(22, 24, 35, 0.03);
}
.liListItem[aria-selected="true"] .checkedIcon{
	display: inline-block;
	width: 20px;
	height: 20px;
	background:url(../image/icon/icon-checked.png) no-repeat center center / cover;
}
.liListItem[aria-selected="false"] .checkedIcon{
	display: none;
}




.divInputContainer{
	position: relative;
    flex: 1 1 0%;
    width: 0px;
    margin-bottom: 0px;

	display: flex;
    justify-content: flex-start;
    align-items: center;
	background: #F7F7F7;
	border-radius: 8px;
}
.spanLabelContainer{
	display: inline-block;
	font-size: 16px;
	padding-left: 12px;
	padding-right: 8px;
	position: relative;
	color:#000;
	height: 24px;
}
.spanLabelContainer:after{
	content: "";
    width: 1px;
    height: 24px;
    background: rgba(22, 24, 35, 0.12);
    right: 0px;
	top: 50%;
	transform: translateY(-50%);
    left: unset;
    position: absolute;
}
.inputContainer{
    background-color: transparent;
    border: none rgba(22, 24, 35, 0.12);
    padding-inline-start: 8px;
    color: #000;
    line-height: 100%;
    outline: none;
    font-size: 16px;
    height: 24px;
    caret-color: #000;
    width: 100%;
    padding-inline-end: unset;
}
.inputContainer::placeholder{
	color:#C1C1C1;
}
.inputContainer + .divIconContainer{
	right: 0px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    position: absolute;
    top: 0px;
    height: 56px;
    padding-inline-end: 16px;
}

.divCodeInputContainer{
	transition: all 0.3s ease 0s;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
	column-gap: 8px;
}
.code-inputContainer{
	position: relative;
    margin-bottom: 9px;
    flex: 1 1 0%;
    width: 0px;
}
.inputContainer{
	position: relative;
    background: #F7F7F7;
    border-radius: 8px;
	padding: 16px;
    height: 56px;
    outline: none;
    font-size: 16px;
    caret-color: #000;
    width: 100%;
}
.divPhoneInputContainer .inputContainer{
	padding-left: 8px;
}
.buttonSendCode{
	color: #7E42FF;
    font-weight: 500;
    margin: 0px;
    background: #F7F7F7;
	border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    padding: 0px 16px;
    height: 56px;
    flex-shrink: 0;
    box-sizing: content-box;
}
.sign-phone-button{
	border-radius: 8px;
    border: none;
	color: #7E42FF;
    background-color: #F0F0F0;
    min-width: 120px;
    min-height: 56px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    padding: 6px 8px;
    user-select: none;
    cursor: pointer;
    box-sizing: border-box;
    width: 100%;
    margin-top: 36px;
}
.buttonSendCode:disabled,
.sign-phone-button:disabled {
    color: #A5A5A5;
    cursor: not-allowed;
}

/* 이메일으로 가입하기 */
.divEmailContainer,
.divPasswordContainer{
	margin-bottom: 9px;
    position: relative;
	display: flex;
}
.divPasswordContainer .iPasswordIcon{
	line-height: 0;
    margin-inline-start: 16px;
    cursor: pointer;
    font-size: 20px;
	width: 24px;
	height: 24px;
	background:url(../image/icon/icon-password.png) no-repeat center center ;
}
.divPasswordContainer.active .iPasswordIcon{
	background-image:url(../image/icon/icon-eye.png); 
}

/* 포인트 모달 */
#point-to-support .divModalContentContainer{
	max-height: 400px;
	border-radius: 20px;
}
#point-to-support .divModalContent{
	width: 580px;
}
#point-to-support .divPageWrapper{
	display: flex;
	justify-content: center;
    align-items: flex-end;
}
#point-to-support .pointALink{
	font-weight: 500;
    font-size: 16px;
    line-height: 16px;
}
#point-to-support .use-point{
	color: #fff;
    font-weight: 500;
    border: none;
    font-size: 16px;
    border-radius: 8px;
    padding: 20px 0px;
    height: 56px;
    position: relative;
    cursor: pointer;
    word-break: keep-all;
    white-space: nowrap;
    background: #7E42FF;
	max-width: 176px;
	margin:0 auto;
	text-align: center;
}
#point-to-support .divpointContainer{
	width: 250px;
    margin:0 auto 50px;
    padding: unset;
}
#point-to-support .pointUseDesc{
	font-weight: 500;
	font-size: 16px;
	line-height: 16px;
	color:#000;
	margin-bottom: 24px;
	text-align: center;
}
#point-to-support .pointUseDesc .detail{
	font-weight: 500;
	font-size: 14px;
	line-height: 14px;
	color:#888;
	margin-top: 8px;
}




/* 코멘트 모달 */
#follow-comments .divModalContentContainer{
	max-height: 614px;
	border-radius: 20px;
}
#follow-comments .divModalContent{
	width: 440px;
	padding-top: 32px;
}
#follow-comments .divPageWrapper{
	padding: 0;
}
/* .divCommentsContainer{
	width: 392px;
    margin: auto;
    padding: unset;
} */
.commentsTitleContainer{
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
	color: #000;
	width: 392px;
    margin:0 auto 8px;
    padding: unset;
}
.commentsTitleContainer .comments-title{
	display: inline-block;
	margin-right:4px;
}
.commentsTitleContainer .comments-number{
	color:#8B8B8B;
} 

.divCommentContainer{
	flex: 1 1 auto;
    margin-top: -2px;
    overflow-anchor: none;
	overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    position: relative;
    height: 450px;
}
.divCommentListContainer{
	width: 100%;
    overflow-y: scroll;
    -webkit-box-flex: 1;
    padding: 16px 24px;
    position: absolute;
}
.divCommentItemContainer{
	border: 0;
    font: inherit;
    font-size: 100%;
    margin: 0;
    margin-bottom: 16px;
    padding: 0;
    vertical-align: baseline;
}
/* // */
.divCommentItem{
	align-items: flex-start;
    border: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    font: inherit;
    font-size: 100%;
    justify-content: space-between;
    margin: 0;
	margin-bottom: 16px;
    padding: 0;
    position: relative;
    vertical-align: baseline;
}
/* // */


.divCommentContentContainer{
	align-items: flex-start;
    display: flex;
    flex-direction: row;
    width: calc(100% - 28px);
}
/* .divCommentContentContainer{
	display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 16px;
    position: relative;
} */

/* .commentAvatar{
    display: block;
    flex: none;
    justify-content: center;
    position: relative;
	align-self: flex-start!important;
    margin-right: 18px;
} */



.commentAvatar{
	flex: 0 0 32px;
	margin-right: 12px;
}

.spanCommentAvatarContainer{
	display: inline-block;
    box-sizing: border-box;
    padding: 0px;
    position: relative;
    overflow: hidden;
    color: rgb(255, 255, 255);
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    line-height: 32px;
    border-radius: 50%;
    background-color: rgba(136, 136, 136, 0.5);
}
.commentAvatar img{
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.divCommentInnerContentContainer{
	flex: 1 1 auto;
}
.commentUserContent{
	display: flex;
}
.commentUserContent h3{
	align-items: center;
    display: inline-flex;
	margin-right: 4px;
}
.aUserLinkName{
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
	color:#000;
}
.commentUserContent .comment-time{
	display: inline!important;
    margin: 0!important;
	color:#8B8B8B;
}
.divCommentText{
	margin-top: 8px;
	margin-bottom: 6px;
	font-weight: 400;
	font-size: 14px;
    line-height: 21px;
	color:#000;
}

.divCommentText span{
    white-space: pre-line;
    word-break: break-word;
}
.divCommentSubContent{
    font-size: 14px;
    line-height: 18px;
	font-weight: 400;
	font-weight: 400;
	display: inline-block;
}
.spanCommentReply{
	cursor: pointer;
    color: #6F6F6F;
}


/* 좋아요 버튼 */
.divActionContainer{
	margin-left: 18px;
    padding-right: 2px;
    width: 24px;
    flex: 0 0 24px;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    padding-top: 8px;
}
.divLikeWrapper{
	color: #A5A5A5;
    font-size: 12px;
    line-height: 12px;
    width: 24px;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
}
.divCommentLikeIcon span{
	display: inline-block;
	width: 24px;
	height: 24px;
	background:url(../image/icon/icon-comment-like.png) no-repeat center center / cover;
}
.divCommentLikeIcon.active span{
	background-image:url(../image/icon/icon-comment-like-on.png);
}
.spanCommentLikeCount{
	color: #A5A5A5;
    font-size: 12px;
    line-height: 12px;
	margin-left: 0px;
    margin-right: 0px;
}

/* 답변 더보기 */
.divReplyContainer{
	padding-left: 44px;
}
.divReplyActionContainer{
	display: flex;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    position: relative;
	line-height: 21px;
}
.pReplyViewMore{
	font-size: 14px;
	font-weight: 400;
	color: #3366FF;
}
.pReplyViewHide{
	display: none;
	font-size: 14px;
	font-weight: 400;
	color: #3366FF;
}
.spanReplyIcon{
	display: inline-block;
	width: 16px;
	height: 16px;
	background:url(../image/icon/icon-reply-arrow.png) no-repeat center center / cover;
	vertical-align: middle;
}

.divReplyContainer.active .pReplyViewMore{
	display: none;
}

.divReplyContainer.active .divReplyActionContainer::before{
	content: "";
    position: absolute;
    top: 50%;
    width: 36px;
    height: 1px;
    background: rgba(22, 24, 35, 0.12);
    transform: scaleY(0.5);
    left: 0px;
}
.divReplyContainer.active .pReplyViewHide{
	display: block;
}
.divReplyContainer.active .reply-end{
	display: flex;
    flex-direction: row;
    -webkit-box-pack: justify;
    position: relative;
    justify-content: right;
}
.divReplyContainer.active .reply-end .pReplyViewMore,
.divReplyContainer.active .divReplyActionContainer.reply-end::before{
	display: none;
}
.divReplyContainer .pReplyViewHide .spanReplyIcon{
	transform:rotate(-180deg)
}


/* 댓글쓰기 */
#follow-comments .addCommentDivContainer{
    height: 72px;
    border-top: 1px solid rgba(22, 24, 35, 0.12);
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}
