/* 
	2022.05.31 추가 
	중복 아티스트 기능 추가	
*/
.artist_list li.multi-profile {
    position: relative;
}

.artist_list li.multi-profile>.wrap {
    display: flex;
    position: absolute;
    left: 0;
    bottom: 28px;
    width: 100%;
    height: 50px;
    z-index: 10;
    background-color: rgba(213, 38, 44, 0.7);
    box-sizing: border-box;
}

.artist_list li.multi-profile>.wrap>.col {
    flex: 1 1 auto;
    position: relative;
    width: 50%;
    height: 100%;

}

.artist_list li.multi-profile>.wrap>.col>a {
    display: flex;
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    padding: 2px 10px 0;
    margin-top: 1px;
    box-sizing: border-box;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.artist_list li.multi-profile>.wrap>.col:first-child>a {
    border-right: 1px solid #fff;
}

.artist_list li.multi-profile>.wrap>.col>a>img {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
}

.artist_list li.multi-profile>.wrap>.col>a>.con {
    flex: 1 1 auto;
    padding-left: 5px;
    width: auto;
    max-width: unset;
}

.artist_list li.multi-profile>.wrap>.col>a>.con>strong {
    display: block;
    color: #fff;
    font-weight: normal;
    font-size: 9px;
    text-align: left;
    line-height: 1;
}

.artist_list li.multi-profile>.wrap>.col>a>.con>em {
    display: block;
    text-align: left;
    color: #fff;
    font-weight: bold;
    line-height: 1;
    height: auto;
    font-size: 10px;
}