.name_area {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}
label.mark {
    position: relative;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    margin-right: 5px;
	display: flex;
    align-items: center;
    justify-content: center;
}
label.mark.naver {
    border: 1px solid #19ce60;
    background: #19ce60;
}
label.mark.kakao {
    border: 1px solid #f7e600;
    background: #f7e600;
}
label.mark.naver:before {
    content: "N";
    color: white;
    font-weight: 900;
    font-size: 13px;
}
label.mark.kakao:before {
    content: "K";
    color: #3A1D1D;
    font-weight: 900;
	font-size: 13px;
}