/*#region 페이지 */
.profile-list {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2vh;
}
/*#endregion*/

/*#region 스크롤바 */
.profile-scroll::-webkit-scrollbar {
    width: 0.8vw;
}
.profile-scroll::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 1vh;
}
.profile-scroll::-webkit-scrollbar-track {
    background: transparent;
}
.profile-scroll {
    height: 100%;
    overflow-y: auto;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
}
/*#endregion */

/*#region 칸*/
.profile-main {
    position: relative;
    display: flex;
    background: white;
    width: 100%;
    padding: 1vw;
    box-sizing: border-box;
    height: auto;
}

.profile-main-text{
    display: flex;
    flex-direction: column;
}

.profile-main-line{
    display: flex;
    margin: 1vh;
}

.profile-main-line1 {
    flex: 0 0 auto;
    white-space: nowrap;
}

.profile-main-line2 {
    position: absolute;
    left: 50%;
    transform: none;
    white-space: nowrap;
}

.profile-sub-title{
    margin: 1vh;
    padding-bottom:1vh;
    border-bottom: 2px solid #000;
    width: 15vw;
}
/*#endregion*/

.skill-box {
    padding: 5px 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    background: #eee;
    color: black;
    font-size: 13px;
    margin-right: 0.5vw;
}

.pm_btn{
    width:28px;
    height:28px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;
    padding:0;
}